home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / m4-1_0_3.lha / m4-1.0.3 / lib / regex.c < prev    next >
C/C++ Source or Header  |  1992-12-19  |  161KB  |  4,910 lines

  1. /* Extended regular expression matching and search library,
  2.    version 0.11.
  3.    (Implements POSIX draft P10003.2/D11.2, except for
  4.    internationalization features.)
  5.  
  6.    Copyright (C) 1985, 89, 90, 91, 92 Free Software Foundation, Inc.
  7.  
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* AIX requires this to be the first thing in the file. */
  23. #if defined (_AIX) && !defined (REGEX_MALLOC)
  24.   #pragma alloca
  25. #endif
  26.  
  27. #define _GNU_SOURCE
  28.  
  29. /* We need this for `regex.h', and perhaps for the Emacs include files.  */
  30. #include <sys/types.h>
  31.  
  32. #if defined (HAVE_CONFIG_H) || defined (emacs)
  33. #include "config.h"
  34. #endif
  35.  
  36. /* The `emacs' switch turns on certain matching commands
  37.    that make sense only in Emacs. */
  38. #ifdef emacs
  39.  
  40. #include "lisp.h"
  41. #include "buffer.h"
  42. #include "syntax.h"
  43.  
  44. /* Emacs uses `NULL' as a predicate.  */
  45. #undef NULL
  46.  
  47. #else  /* not emacs */
  48.  
  49. /* We used to test for `BSTRING' here, but only GCC and Emacs define
  50.    `BSTRING', as far as I know, and neither of them use this code.  */
  51. #if HAVE_STRING_H || STDC_HEADERS
  52. #include <string.h>
  53. #ifndef bcmp
  54. #define bcmp(s1, s2, n)    memcmp ((s1), (s2), (n))
  55. #endif
  56. #ifndef bcopy
  57. #define bcopy(s, d, n)    memcpy ((d), (s), (n))
  58. #endif
  59. #ifndef bzero
  60. #define bzero(s, n)    memset ((s), 0, (n))
  61. #endif
  62. #else
  63. #include <strings.h>
  64. #endif
  65.  
  66. #ifdef STDC_HEADERS
  67. #include <stdlib.h>
  68. #else
  69. char *malloc ();
  70. char *realloc ();
  71. #endif
  72.  
  73.  
  74. /* Define the syntax stuff for \<, \>, etc.  */
  75.  
  76. /* This must be nonzero for the wordchar and notwordchar pattern
  77.    commands in re_match_2.  */
  78. #ifndef Sword 
  79. #define Sword 1
  80. #endif
  81.  
  82. #ifdef SYNTAX_TABLE
  83.  
  84. extern char *re_syntax_table;
  85.  
  86. #else /* not SYNTAX_TABLE */
  87.  
  88. /* How many characters in the character set.  */
  89. #define CHAR_SET_SIZE 256
  90.  
  91. static char re_syntax_table[CHAR_SET_SIZE];
  92.  
  93. static void
  94. init_syntax_once ()
  95. {
  96.    register int c;
  97.    static int done = 0;
  98.  
  99.    if (done)
  100.      return;
  101.  
  102.    bzero (re_syntax_table, sizeof re_syntax_table);
  103.  
  104.    for (c = 'a'; c <= 'z'; c++)
  105.      re_syntax_table[c] = Sword;
  106.  
  107.    for (c = 'A'; c <= 'Z'; c++)
  108.      re_syntax_table[c] = Sword;
  109.  
  110.    for (c = '0'; c <= '9'; c++)
  111.      re_syntax_table[c] = Sword;
  112.  
  113.    re_syntax_table['_'] = Sword;
  114.  
  115.    done = 1;
  116. }
  117.  
  118. #endif /* not SYNTAX_TABLE */
  119.  
  120. #define SYNTAX(c) re_syntax_table[c]
  121.  
  122. #endif /* not emacs */
  123.  
  124. /* Get the interface, including the syntax bits.  */
  125. #include "regex.h"
  126.  
  127.  
  128. /* isalpha etc. are used for the character classes.  */
  129. #include <ctype.h>
  130. #ifndef isgraph
  131. #define isgraph(c) (isprint (c) && !isspace (c))
  132. #endif
  133. #ifndef isblank
  134. #define isblank(c) ((c) == ' ' || (c) == '\t')
  135. #endif
  136.  
  137. #ifndef NULL
  138. #define NULL 0
  139. #endif
  140.  
  141. /* We remove any previous definition of `SIGN_EXTEND_CHAR',
  142.    since ours (we hope) works properly with all combinations of
  143.    machines, compilers, `char' and `unsigned char' argument types.
  144.    (Per Bothner suggested the basic approach.)  */
  145. #undef SIGN_EXTEND_CHAR
  146. #if __STDC__
  147. #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
  148. #else  /* not __STDC__ */
  149. /* As in Harbison and Steele.  */
  150. #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
  151. #endif
  152.  
  153. /* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we
  154.    use `alloca' instead of `malloc'.  This is because using malloc in
  155.    re_search* or re_match* could cause memory leaks when C-g is used in
  156.    Emacs; also, malloc is slower and causes storage fragmentation.  On
  157.    the other hand, malloc is more portable, and easier to debug.  
  158.    
  159.    Because we sometimes use alloca, some routines have to be macros,
  160.    not functions -- `alloca'-allocated space disappears at the end of the
  161.    function it is called in.  */
  162.  
  163. #ifdef REGEX_MALLOC
  164.  
  165. #define REGEX_ALLOCATE malloc
  166. #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
  167.  
  168. #else /* not REGEX_MALLOC  */
  169.  
  170. /* Emacs already defines alloca, sometimes.  */
  171. #ifndef alloca
  172.  
  173. /* Make alloca work the best possible way.  */
  174. #ifdef __GNUC__
  175. #define alloca __builtin_alloca
  176. #else /* not __GNUC__ */
  177. #if HAVE_ALLOCA_H
  178. #include <alloca.h>
  179. #else /* not __GNUC__ or HAVE_ALLOCA_H */
  180. #ifndef _AIX /* Already did AIX, up at the top.  */
  181. char *alloca ();
  182. #endif /* not _AIX */
  183. #endif /* not HAVE_ALLOCA_H */ 
  184. #endif /* not __GNUC__ */
  185.  
  186. #endif /* not alloca */
  187.  
  188. #define REGEX_ALLOCATE alloca
  189.  
  190. /* Assumes a `char *destination' variable.  */
  191. #define REGEX_REALLOCATE(source, osize, nsize)                \
  192.   (destination = (char *) alloca (nsize),                \
  193.    bcopy (source, destination, osize),                    \
  194.    destination)
  195.  
  196. #endif /* not REGEX_MALLOC */
  197.  
  198.  
  199. /* True if `size1' is non-NULL and PTR is pointing anywhere inside
  200.    `string1' or just past its end.  This works if PTR is NULL, which is
  201.    a good thing.  */
  202. #define FIRST_STRING_P(ptr)                     \
  203.   (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
  204.  
  205. /* (Re)Allocate N items of type T using malloc, or fail.  */
  206. #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
  207. #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
  208. #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
  209.  
  210. #define BYTEWIDTH 8 /* In bits.  */
  211.  
  212. #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
  213.  
  214. #define MAX(a, b) ((a) > (b) ? (a) : (b))
  215. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  216.  
  217. typedef char boolean;
  218. #define false 0
  219. #define true 1
  220.  
  221. /* These are the command codes that appear in compiled regular
  222.    expressions.  Some opcodes are followed by argument bytes.  A
  223.    command code can specify any interpretation whatsoever for its
  224.    arguments.  Zero bytes may appear in the compiled regular expression.
  225.  
  226.    The value of `exactn' is needed in search.c (search_buffer) in Emacs.
  227.    So regex.h defines a symbol `RE_EXACTN_VALUE' to be 1; the value of
  228.    `exactn' we use here must also be 1.  */
  229.  
  230. typedef enum
  231. {
  232.   no_op = 0,
  233.  
  234.         /* Followed by one byte giving n, then by n literal bytes.  */
  235.   exactn = 1,
  236.  
  237.         /* Matches any (more or less) character.  */
  238.   anychar,
  239.  
  240.         /* Matches any one char belonging to specified set.  First
  241.            following byte is number of bitmap bytes.  Then come bytes
  242.            for a bitmap saying which chars are in.  Bits in each byte
  243.            are ordered low-bit-first.  A character is in the set if its
  244.            bit is 1.  A character too large to have a bit in the map is
  245.            automatically not in the set.  */
  246.   charset,
  247.  
  248.         /* Same parameters as charset, but match any character that is
  249.            not one of those specified.  */
  250.   charset_not,
  251.  
  252.         /* Start remembering the text that is matched, for storing in a
  253.            register.  Followed by one byte with the register number, in
  254.            the range 0 to one less than the pattern buffer's re_nsub
  255.            field.  Then followed by one byte with the number of groups
  256.            inner to this one.  (This last has to be part of the
  257.            start_memory only because we need it in the on_failure_jump
  258.            of re_match_2.)  */
  259.   start_memory,
  260.  
  261.         /* Stop remembering the text that is matched and store it in a
  262.            memory register.  Followed by one byte with the register
  263.            number, in the range 0 to one less than `re_nsub' in the
  264.            pattern buffer, and one byte with the number of inner groups,
  265.            just like `start_memory'.  (We need the number of inner
  266.            groups here because we don't have any easy way of finding the
  267.            corresponding start_memory when we're at a stop_memory.)  */
  268.   stop_memory,
  269.  
  270.         /* Match a duplicate of something remembered. Followed by one
  271.            byte containing the register number.  */
  272.   duplicate,
  273.  
  274.         /* Fail unless at beginning of line.  */
  275.   begline,
  276.  
  277.         /* Fail unless at end of line.  */
  278.   endline,
  279.  
  280.         /* Succeeds if at beginning of buffer (if emacs) or at beginning
  281.            of string to be matched (if not).  */
  282.   begbuf,
  283.  
  284.         /* Analogously, for end of buffer/string.  */
  285.   endbuf,
  286.  
  287.         /* Followed by two byte relative address to which to jump.  */
  288.   jump, 
  289.  
  290.     /* Same as jump, but marks the end of an alternative.  */
  291.   jump_past_alt,
  292.  
  293.         /* Followed by two-byte relative address of place to resume at
  294.            in case of failure.  */
  295.   on_failure_jump,
  296.     
  297.         /* Like on_failure_jump, but pushes a placeholder instead of the
  298.            current string position when executed.  */
  299.   on_failure_keep_string_jump,
  300.   
  301.         /* Throw away latest failure point and then jump to following
  302.            two-byte relative address.  */
  303.   pop_failure_jump,
  304.  
  305.         /* Change to pop_failure_jump if know won't have to backtrack to
  306.            match; otherwise change to jump.  This is used to jump
  307.            back to the beginning of a repeat.  If what follows this jump
  308.            clearly won't match what the repeat does, such that we can be
  309.            sure that there is no use backtracking out of repetitions
  310.            already matched, then we change it to a pop_failure_jump.
  311.            Followed by two-byte address.  */
  312.   maybe_pop_jump,
  313.  
  314.         /* Jump to following two-byte address, and push a dummy failure
  315.            point. This failure point will be thrown away if an attempt
  316.            is made to use it for a failure.  A `+' construct makes this
  317.            before the first repeat.  Also used as an intermediary kind
  318.            of jump when compiling an alternative.  */
  319.   dummy_failure_jump,
  320.  
  321.     /* Push a dummy failure point and continue.  Used at the end of
  322.        alternatives.  */
  323.   push_dummy_failure,
  324.  
  325.         /* Followed by two-byte relative address and two-byte number n.
  326.            After matching N times, jump to the address upon failure.  */
  327.   succeed_n,
  328.  
  329.         /* Followed by two-byte relative address, and two-byte number n.
  330.            Jump to the address N times, then fail.  */
  331.   jump_n,
  332.  
  333.         /* Set the following two-byte relative address to the
  334.            subsequent two-byte number.  The address *includes* the two
  335.            bytes of number.  */
  336.   set_number_at,
  337.  
  338.   wordchar,    /* Matches any word-constituent character.  */
  339.   notwordchar,    /* Matches any char that is not a word-constituent.  */
  340.  
  341.   wordbeg,    /* Succeeds if at word beginning.  */
  342.   wordend,    /* Succeeds if at word end.  */
  343.  
  344.   wordbound,    /* Succeeds if at a word boundary.  */
  345.   notwordbound    /* Succeeds if not at a word boundary.  */
  346.  
  347. #ifdef emacs
  348.   ,before_dot,    /* Succeeds if before point.  */
  349.   at_dot,    /* Succeeds if at point.  */
  350.   after_dot,    /* Succeeds if after point.  */
  351.  
  352.     /* Matches any character whose syntax is specified.  Followed by
  353.            a byte which contains a syntax code, e.g., Sword.  */
  354.   syntaxspec,
  355.  
  356.     /* Matches any character whose syntax is not that specified.  */
  357.   notsyntaxspec
  358. #endif /* emacs */
  359. } re_opcode_t;
  360.  
  361. /* Common operations on the compiled pattern.  */
  362.  
  363. /* Store NUMBER in two contiguous bytes starting at DESTINATION.  */
  364.  
  365. #define STORE_NUMBER(destination, number)                \
  366.   do {                                    \
  367.     (destination)[0] = (number) & 0377;                    \
  368.     (destination)[1] = (number) >> 8;                    \
  369.   } while (0)
  370.  
  371. /* Same as STORE_NUMBER, except increment DESTINATION to
  372.    the byte after where the number is stored.  Therefore, DESTINATION
  373.    must be an lvalue.  */
  374.  
  375. #define STORE_NUMBER_AND_INCR(destination, number)            \
  376.   do {                                    \
  377.     STORE_NUMBER (destination, number);                    \
  378.     (destination) += 2;                            \
  379.   } while (0)
  380.  
  381. /* Put into DESTINATION a number stored in two contiguous bytes starting
  382.    at SOURCE.  */
  383.  
  384. #define EXTRACT_NUMBER(destination, source)                \
  385.   do {                                    \
  386.     (destination) = *(source) & 0377;                    \
  387.     (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8;        \
  388.   } while (0)
  389.  
  390. #ifdef DEBUG
  391. static void
  392. extract_number (dest, source)
  393.     int *dest;
  394.     unsigned char *source;
  395. {
  396.   int temp = SIGN_EXTEND_CHAR (*(source + 1)); 
  397.   *dest = *source & 0377;
  398.   *dest += temp << 8;
  399. }
  400.  
  401. #ifndef EXTRACT_MACROS /* To debug the macros.  */
  402. #undef EXTRACT_NUMBER
  403. #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src)
  404. #endif /* not EXTRACT_MACROS */
  405.  
  406. #endif /* DEBUG */
  407.  
  408. /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
  409.    SOURCE must be an lvalue.  */
  410.  
  411. #define EXTRACT_NUMBER_AND_INCR(destination, source)            \
  412.   do {                                    \
  413.     EXTRACT_NUMBER (destination, source);                \
  414.     (source) += 2;                             \
  415.   } while (0)
  416.  
  417. #ifdef DEBUG
  418. static void
  419. extract_number_and_incr (destination, source)
  420.     int *destination;
  421.     unsigned char **source;
  422.   extract_number (destination, *source);
  423.   *source += 2;
  424. }
  425.  
  426. #ifndef EXTRACT_MACROS
  427. #undef EXTRACT_NUMBER_AND_INCR
  428. #define EXTRACT_NUMBER_AND_INCR(dest, src) \
  429.   extract_number_and_incr (&dest, &src)
  430. #endif /* not EXTRACT_MACROS */
  431.  
  432. #endif /* DEBUG */
  433.  
  434. /* If DEBUG is defined, Regex prints many voluminous messages about what
  435.    it is doing (if the variable `debug' is nonzero).  If linked with the
  436.    main program in `iregex.c', you can enter patterns and strings
  437.    interactively.  And if linked with the main program in `main.c' and
  438.    the other test files, you can run the already-written tests.  */
  439.  
  440. #ifdef DEBUG
  441.  
  442. /* We use standard I/O for debugging.  */
  443. #include <stdio.h>
  444.  
  445. /* It is useful to test things that ``must'' be true when debugging.  */
  446. #include <assert.h>
  447.  
  448. static int debug = 0;
  449.  
  450. #define DEBUG_STATEMENT(e) e
  451. #define DEBUG_PRINT1(x) if (debug) printf (x)
  452. #define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
  453. #define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
  454. #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
  455. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)                 \
  456.   if (debug) print_partial_compiled_pattern (s, e)
  457. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)            \
  458.   if (debug) print_double_string (w, s1, sz1, s2, sz2)
  459.  
  460.  
  461. extern void printchar ();
  462.  
  463. /* Print the fastmap in human-readable form.  */
  464.  
  465. void
  466. print_fastmap (fastmap)
  467.     char *fastmap;
  468. {
  469.   unsigned was_a_range = 0;
  470.   unsigned i = 0;  
  471.   
  472.   while (i < (1 << BYTEWIDTH))
  473.     {
  474.       if (fastmap[i++])
  475.     {
  476.       was_a_range = 0;
  477.           printchar (i - 1);
  478.           while (i < (1 << BYTEWIDTH)  &&  fastmap[i])
  479.             {
  480.               was_a_range = 1;
  481.               i++;
  482.             }
  483.       if (was_a_range)
  484.             {
  485.               printf ("-");
  486.               printchar (i - 1);
  487.             }
  488.         }
  489.     }
  490.   putchar ('\n'); 
  491. }
  492.  
  493.  
  494. /* Print a compiled pattern string in human-readable form, starting at
  495.    the START pointer into it and ending just before the pointer END.  */
  496.  
  497. void
  498. print_partial_compiled_pattern (start, end)
  499.     unsigned char *start;
  500.     unsigned char *end;
  501. {
  502.   int mcnt, mcnt2;
  503.   unsigned char *p = start;
  504.   unsigned char *pend = end;
  505.  
  506.   if (start == NULL)
  507.     {
  508.       printf ("(null)\n");
  509.       return;
  510.     }
  511.     
  512.   /* Loop over pattern commands.  */
  513.   while (p < pend)
  514.     {
  515.       switch ((re_opcode_t) *p++)
  516.     {
  517.         case no_op:
  518.           printf ("/no_op");
  519.           break;
  520.  
  521.     case exactn:
  522.       mcnt = *p++;
  523.           printf ("/exactn/%d", mcnt);
  524.           do
  525.         {
  526.               putchar ('/');
  527.           printchar (*p++);
  528.             }
  529.           while (--mcnt);
  530.           break;
  531.  
  532.     case start_memory:
  533.           mcnt = *p++;
  534.           printf ("/start_memory/%d/%d", mcnt, *p++);
  535.           break;
  536.  
  537.     case stop_memory:
  538.           mcnt = *p++;
  539.       printf ("/stop_memory/%d/%d", mcnt, *p++);
  540.           break;
  541.  
  542.     case duplicate:
  543.       printf ("/duplicate/%d", *p++);
  544.       break;
  545.  
  546.     case anychar:
  547.       printf ("/anychar");
  548.       break;
  549.  
  550.     case charset:
  551.         case charset_not:
  552.           {
  553.             register int c;
  554.  
  555.             printf ("/charset%s",
  556.                 (re_opcode_t) *(p - 1) == charset_not ? "_not" : "");
  557.             
  558.             assert (p + *p < pend);
  559.  
  560.             for (c = 0; c < *p; c++)
  561.               {
  562.                 unsigned bit;
  563.                 unsigned char map_byte = p[1 + c];
  564.                 
  565.                 putchar ('/');
  566.  
  567.         for (bit = 0; bit < BYTEWIDTH; bit++)
  568.                   if (map_byte & (1 << bit))
  569.                     printchar (c * BYTEWIDTH + bit);
  570.               }
  571.         p += 1 + *p;
  572.         break;
  573.       }
  574.  
  575.     case begline:
  576.       printf ("/begline");
  577.           break;
  578.  
  579.     case endline:
  580.           printf ("/endline");
  581.           break;
  582.  
  583.     case on_failure_jump:
  584.           extract_number_and_incr (&mcnt, &p);
  585.         printf ("/on_failure_jump/0/%d", mcnt);
  586.           break;
  587.  
  588.     case on_failure_keep_string_jump:
  589.           extract_number_and_incr (&mcnt, &p);
  590.         printf ("/on_failure_keep_string_jump/0/%d", mcnt);
  591.           break;
  592.  
  593.     case dummy_failure_jump:
  594.           extract_number_and_incr (&mcnt, &p);
  595.         printf ("/dummy_failure_jump/0/%d", mcnt);
  596.           break;
  597.  
  598.     case push_dummy_failure:
  599.           printf ("/push_dummy_failure");
  600.           break;
  601.           
  602.         case maybe_pop_jump:
  603.           extract_number_and_incr (&mcnt, &p);
  604.         printf ("/maybe_pop_jump/0/%d", mcnt);
  605.       break;
  606.  
  607.         case pop_failure_jump:
  608.       extract_number_and_incr (&mcnt, &p);
  609.         printf ("/pop_failure_jump/0/%d", mcnt);
  610.       break;          
  611.           
  612.         case jump_past_alt:
  613.       extract_number_and_incr (&mcnt, &p);
  614.         printf ("/jump_past_alt/0/%d", mcnt);
  615.       break;          
  616.           
  617.         case jump:
  618.       extract_number_and_incr (&mcnt, &p);
  619.         printf ("/jump/0/%d", mcnt);
  620.       break;
  621.  
  622.         case succeed_n: 
  623.           extract_number_and_incr (&mcnt, &p);
  624.           extract_number_and_incr (&mcnt2, &p);
  625.        printf ("/succeed_n/0/%d/0/%d", mcnt, mcnt2);
  626.           break;
  627.         
  628.         case jump_n: 
  629.           extract_number_and_incr (&mcnt, &p);
  630.           extract_number_and_incr (&mcnt2, &p);
  631.        printf ("/jump_n/0/%d/0/%d", mcnt, mcnt2);
  632.           break;
  633.         
  634.         case set_number_at: 
  635.           extract_number_and_incr (&mcnt, &p);
  636.           extract_number_and_incr (&mcnt2, &p);
  637.        printf ("/set_number_at/0/%d/0/%d", mcnt, mcnt2);
  638.           break;
  639.         
  640.         case wordbound:
  641.       printf ("/wordbound");
  642.       break;
  643.  
  644.     case notwordbound:
  645.       printf ("/notwordbound");
  646.           break;
  647.  
  648.     case wordbeg:
  649.       printf ("/wordbeg");
  650.       break;
  651.           
  652.     case wordend:
  653.       printf ("/wordend");
  654.           
  655. #ifdef emacs
  656.     case before_dot:
  657.       printf ("/before_dot");
  658.           break;
  659.  
  660.     case at_dot:
  661.       printf ("/at_dot");
  662.           break;
  663.  
  664.     case after_dot:
  665.       printf ("/after_dot");
  666.           break;
  667.  
  668.     case syntaxspec:
  669.           printf ("/syntaxspec");
  670.       mcnt = *p++;
  671.       printf ("/%d", mcnt);
  672.           break;
  673.       
  674.     case notsyntaxspec:
  675.           printf ("/notsyntaxspec");
  676.       mcnt = *p++;
  677.       printf ("/%d", mcnt);
  678.       break;
  679. #endif /* emacs */
  680.  
  681.     case wordchar:
  682.       printf ("/wordchar");
  683.           break;
  684.       
  685.     case notwordchar:
  686.       printf ("/notwordchar");
  687.           break;
  688.  
  689.     case begbuf:
  690.       printf ("/begbuf");
  691.           break;
  692.  
  693.     case endbuf:
  694.       printf ("/endbuf");
  695.           break;
  696.  
  697.         default:
  698.           printf ("?%d", *(p-1));
  699.     }
  700.     }
  701.   printf ("/\n");
  702. }
  703.  
  704.  
  705. void
  706. print_compiled_pattern (bufp)
  707.     struct re_pattern_buffer *bufp;
  708. {
  709.   unsigned char *buffer = bufp->buffer;
  710.  
  711.   print_partial_compiled_pattern (buffer, buffer + bufp->used);
  712.   printf ("%d bytes used/%d bytes allocated.\n", bufp->used, bufp->allocated);
  713.  
  714.   if (bufp->fastmap_accurate && bufp->fastmap)
  715.     {
  716.       printf ("fastmap: ");
  717.       print_fastmap (bufp->fastmap);
  718.     }
  719.  
  720.   printf ("re_nsub: %d\t", bufp->re_nsub);
  721.   printf ("regs_alloc: %d\t", bufp->regs_allocated);
  722.   printf ("can_be_null: %d\t", bufp->can_be_null);
  723.   printf ("newline_anchor: %d\n", bufp->newline_anchor);
  724.   printf ("no_sub: %d\t", bufp->no_sub);
  725.   printf ("not_bol: %d\t", bufp->not_bol);
  726.   printf ("not_eol: %d\t", bufp->not_eol);
  727.   printf ("syntax: %d\n", bufp->syntax);
  728.   /* Perhaps we should print the translate table?  */
  729. }
  730.  
  731.  
  732. void
  733. print_double_string (where, string1, size1, string2, size2)
  734.     const char *where;
  735.     const char *string1;
  736.     const char *string2;
  737.     int size1;
  738.     int size2;
  739. {
  740.   unsigned this_char;
  741.   
  742.   if (where == NULL)
  743.     printf ("(null)");
  744.   else
  745.     {
  746.       if (FIRST_STRING_P (where))
  747.         {
  748.           for (this_char = where - string1; this_char < size1; this_char++)
  749.             printchar (string1[this_char]);
  750.  
  751.           where = string2;    
  752.         }
  753.  
  754.       for (this_char = where - string2; this_char < size2; this_char++)
  755.         printchar (string2[this_char]);
  756.     }
  757. }
  758.  
  759. #else /* not DEBUG */
  760.  
  761. #undef assert
  762. #define assert(e)
  763.  
  764. #define DEBUG_STATEMENT(e)
  765. #define DEBUG_PRINT1(x)
  766. #define DEBUG_PRINT2(x1, x2)
  767. #define DEBUG_PRINT3(x1, x2, x3)
  768. #define DEBUG_PRINT4(x1, x2, x3, x4)
  769. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
  770. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
  771.  
  772. #endif /* not DEBUG */
  773.  
  774. /* Set by `re_set_syntax' to the current regexp syntax to recognize.  Can
  775.    also be assigned to arbitrarily: each pattern buffer stores its own
  776.    syntax, so it can be changed between regex compilations.  */
  777. reg_syntax_t re_syntax_options = RE_SYNTAX_EMACS;
  778.  
  779.  
  780. /* Specify the precise syntax of regexps for compilation.  This provides
  781.    for compatibility for various utilities which historically have
  782.    different, incompatible syntaxes.
  783.  
  784.    The argument SYNTAX is a bit mask comprised of the various bits
  785.    defined in regex.h.  We return the old syntax.  */
  786.  
  787. reg_syntax_t
  788. re_set_syntax (syntax)
  789.     reg_syntax_t syntax;
  790. {
  791.   reg_syntax_t ret = re_syntax_options;
  792.   
  793.   re_syntax_options = syntax;
  794.   return ret;
  795. }
  796.  
  797. /* This table gives an error message for each of the error codes listed
  798.    in regex.h.  Obviously the order here has to be same as there.  */
  799.  
  800. static const char *re_error_msg[] =
  801.   { NULL,                    /* REG_NOERROR */
  802.     "No match",                    /* REG_NOMATCH */
  803.     "Invalid regular expression",        /* REG_BADPAT */
  804.     "Invalid collation character",        /* REG_ECOLLATE */
  805.     "Invalid character class name",        /* REG_ECTYPE */
  806.     "Trailing backslash",            /* REG_EESCAPE */
  807.     "Invalid back reference",            /* REG_ESUBREG */
  808.     "Unmatched [ or [^",            /* REG_EBRACK */
  809.     "Unmatched ( or \\(",            /* REG_EPAREN */
  810.     "Unmatched \\{",                /* REG_EBRACE */
  811.     "Invalid content of \\{\\}",        /* REG_BADBR */
  812.     "Invalid range end",            /* REG_ERANGE */
  813.     "Memory exhausted",                /* REG_ESPACE */
  814.     "Invalid preceding regular expression",    /* REG_BADRPT */
  815.     "Premature end of regular expression",    /* REG_EEND */
  816.     "Regular expression too big",        /* REG_ESIZE */
  817.     "Unmatched ) or \\)",            /* REG_ERPAREN */
  818.   };
  819.  
  820. /* Subroutine declarations and macros for regex_compile.  */
  821.  
  822. static void store_op1 (), store_op2 ();
  823. static void insert_op1 (), insert_op2 ();
  824. static boolean at_begline_loc_p (), at_endline_loc_p ();
  825. static boolean group_in_compile_stack ();
  826. static reg_errcode_t compile_range ();
  827.  
  828. /* Fetch the next character in the uncompiled pattern---translating it 
  829.    if necessary.  Also cast from a signed character in the constant
  830.    string passed to us by the user to an unsigned char that we can use
  831.    as an array index (in, e.g., `translate').  */
  832. #define PATFETCH(c)                            \
  833.   do {if (p == pend) return REG_EEND;                    \
  834.     c = (unsigned char) *p++;                        \
  835.     if (translate) c = translate[c];                     \
  836.   } while (0)
  837.  
  838. /* Fetch the next character in the uncompiled pattern, with no
  839.    translation.  */
  840. #define PATFETCH_RAW(c)                            \
  841.   do {if (p == pend) return REG_EEND;                    \
  842.     c = (unsigned char) *p++;                         \
  843.   } while (0)
  844.  
  845. /* Go backwards one character in the pattern.  */
  846. #define PATUNFETCH p--
  847.  
  848.  
  849. /* If `translate' is non-null, return translate[D], else just D.  We
  850.    cast the subscript to translate because some data is declared as
  851.    `char *', to avoid warnings when a string constant is passed.  But
  852.    when we use a character as a subscript we must make it unsigned.  */
  853. #define TRANSLATE(d) (translate ? translate[(unsigned char) (d)] : (d))
  854.  
  855.  
  856. /* Macros for outputting the compiled pattern into `buffer'.  */
  857.  
  858. /* If the buffer isn't allocated when it comes in, use this.  */
  859. #define INIT_BUF_SIZE  32
  860.  
  861. /* Make sure we have at least N more bytes of space in buffer.  */
  862. #define GET_BUFFER_SPACE(n)                        \
  863.     while (b - bufp->buffer + (n) > bufp->allocated)            \
  864.       EXTEND_BUFFER ()
  865.  
  866. /* Make sure we have one more byte of buffer space and then add C to it.  */
  867. #define BUF_PUSH(c)                            \
  868.   do {                                    \
  869.     GET_BUFFER_SPACE (1);                        \
  870.     *b++ = (unsigned char) (c);                        \
  871.   } while (0)
  872.  
  873.  
  874. /* Ensure we have two more bytes of buffer space and then append C1 and C2.  */
  875. #define BUF_PUSH_2(c1, c2)                        \
  876.   do {                                    \
  877.     GET_BUFFER_SPACE (2);                        \
  878.     *b++ = (unsigned char) (c1);                    \
  879.     *b++ = (unsigned char) (c2);                    \
  880.   } while (0)
  881.  
  882.  
  883. /* As with BUF_PUSH_2, except for three bytes.  */
  884. #define BUF_PUSH_3(c1, c2, c3)                        \
  885.   do {                                    \
  886.     GET_BUFFER_SPACE (3);                        \
  887.     *b++ = (unsigned char) (c1);                    \
  888.     *b++ = (unsigned char) (c2);                    \
  889.     *b++ = (unsigned char) (c3);                    \
  890.   } while (0)
  891.  
  892.  
  893. /* Store a jump with opcode OP at LOC to location TO.  We store a
  894.    relative address offset by the three bytes the jump itself occupies.  */
  895. #define STORE_JUMP(op, loc, to) \
  896.   store_op1 (op, loc, (to) - (loc) - 3)
  897.  
  898. /* Likewise, for a two-argument jump.  */
  899. #define STORE_JUMP2(op, loc, to, arg) \
  900.   store_op2 (op, loc, (to) - (loc) - 3, arg)
  901.  
  902. /* Like `STORE_JUMP', but for inserting.  Assume `b' is the buffer end.  */
  903. #define INSERT_JUMP(op, loc, to) \
  904.   insert_op1 (op, loc, (to) - (loc) - 3, b)
  905.  
  906. /* Like `STORE_JUMP2', but for inserting.  Assume `b' is the buffer end.  */
  907. #define INSERT_JUMP2(op, loc, to, arg) \
  908.   insert_op2 (op, loc, (to) - (loc) - 3, arg, b)
  909.  
  910.  
  911. /* This is not an arbitrary limit: the arguments which represent offsets
  912.    into the pattern are two bytes long.  So if 2^16 bytes turns out to
  913.    be too small, many things would have to change.  */
  914. #define MAX_BUF_SIZE (1L << 16)
  915.  
  916.  
  917. /* Extend the buffer by twice its current size via realloc and
  918.    reset the pointers that pointed into the old block to point to the
  919.    correct places in the new one.  If extending the buffer results in it
  920.    being larger than MAX_BUF_SIZE, then flag memory exhausted.  */
  921. #define EXTEND_BUFFER()                            \
  922.   do {                                     \
  923.     unsigned char *old_buffer = bufp->buffer;                \
  924.     if (bufp->allocated == MAX_BUF_SIZE)                 \
  925.       return REG_ESIZE;                            \
  926.     bufp->allocated <<= 1;                        \
  927.     if (bufp->allocated > MAX_BUF_SIZE)                    \
  928.       bufp->allocated = MAX_BUF_SIZE;                     \
  929.     bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated);\
  930.     if (bufp->buffer == NULL)                        \
  931.       return REG_ESPACE;                        \
  932.     /* If the buffer moved, move all the pointers into it.  */        \
  933.     if (old_buffer != bufp->buffer)                    \
  934.       {                                    \
  935.         b = (b - old_buffer) + bufp->buffer;                \
  936.         begalt = (begalt - old_buffer) + bufp->buffer;            \
  937.         if (fixup_alt_jump)                        \
  938.           fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;\
  939.         if (laststart)                            \
  940.           laststart = (laststart - old_buffer) + bufp->buffer;        \
  941.         if (pending_exact)                        \
  942.           pending_exact = (pending_exact - old_buffer) + bufp->buffer;    \
  943.       }                                    \
  944.   } while (0)
  945.  
  946.  
  947. /* Since we have one byte reserved for the register number argument to
  948.    {start,stop}_memory, the maximum number of groups we can report
  949.    things about is what fits in that byte.  */
  950. #define MAX_REGNUM 255
  951.  
  952. /* But patterns can have more than `MAX_REGNUM' registers.  We just
  953.    ignore the excess.  */
  954. typedef unsigned regnum_t;
  955.  
  956.  
  957. /* Macros for the compile stack.  */
  958.  
  959. /* Since offsets can go either forwards or backwards, this type needs to
  960.    be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1.  */
  961. typedef int pattern_offset_t;
  962.  
  963. typedef struct
  964. {
  965.   pattern_offset_t begalt_offset;
  966.   pattern_offset_t fixup_alt_jump;
  967.   pattern_offset_t inner_group_offset;
  968.   pattern_offset_t laststart_offset;  
  969.   regnum_t regnum;
  970. } compile_stack_elt_t;
  971.  
  972.  
  973. typedef struct
  974. {
  975.   compile_stack_elt_t *stack;
  976.   unsigned size;
  977.   unsigned avail;            /* Offset of next open position.  */
  978. } compile_stack_type;
  979.  
  980.  
  981. #define INIT_COMPILE_STACK_SIZE 32
  982.  
  983. #define COMPILE_STACK_EMPTY  (compile_stack.avail == 0)
  984. #define COMPILE_STACK_FULL  (compile_stack.avail == compile_stack.size)
  985.  
  986. /* The next available element.  */
  987. #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
  988.  
  989.  
  990. /* Set the bit for character C in a list.  */
  991. #define SET_LIST_BIT(c)                               \
  992.   (b[((unsigned char) (c)) / BYTEWIDTH]               \
  993.    |= 1 << (((unsigned char) c) % BYTEWIDTH))
  994.  
  995.  
  996. /* Get the next unsigned number in the uncompiled pattern.  */
  997. #define GET_UNSIGNED_NUMBER(num)                     \
  998.   { if (p != pend)                            \
  999.      {                                    \
  1000.        PATFETCH (c);                             \
  1001.        while (isdigit (c))                         \
  1002.          {                                 \
  1003.            if (num < 0)                            \
  1004.               num = 0;                            \
  1005.            num = num * 10 + c - '0';                     \
  1006.            if (p == pend)                         \
  1007.               break;                             \
  1008.            PATFETCH (c);                        \
  1009.          }                                 \
  1010.        }                                 \
  1011.     }        
  1012.  
  1013. #define CHAR_CLASS_MAX_LENGTH  6 /* Namely, `xdigit'.  */
  1014.  
  1015. #define IS_CHAR_CLASS(string)                        \
  1016.    (STREQ (string, "alpha") || STREQ (string, "upper")            \
  1017.     || STREQ (string, "lower") || STREQ (string, "digit")        \
  1018.     || STREQ (string, "alnum") || STREQ (string, "xdigit")        \
  1019.     || STREQ (string, "space") || STREQ (string, "print")        \
  1020.     || STREQ (string, "punct") || STREQ (string, "graph")        \
  1021.     || STREQ (string, "cntrl") || STREQ (string, "blank"))
  1022.  
  1023. /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
  1024.    Returns one of error codes defined in `regex.h', or zero for success.
  1025.  
  1026.    Assumes the `allocated' (and perhaps `buffer') and `translate'
  1027.    fields are set in BUFP on entry.
  1028.  
  1029.    If it succeeds, results are put in BUFP (if it returns an error, the
  1030.    contents of BUFP are undefined):
  1031.      `buffer' is the compiled pattern;
  1032.      `syntax' is set to SYNTAX;
  1033.      `used' is set to the length of the compiled pattern;
  1034.      `fastmap_accurate' is zero;
  1035.      `re_nsub' is the number of subexpressions in PATTERN;
  1036.      `not_bol' and `not_eol' are zero;
  1037.    
  1038.    The `fastmap' and `newline_anchor' fields are neither
  1039.    examined nor set.  */
  1040.  
  1041. static reg_errcode_t
  1042. regex_compile (pattern, size, syntax, bufp)
  1043.      const char *pattern;
  1044.      int size;
  1045.      reg_syntax_t syntax;
  1046.      struct re_pattern_buffer *bufp;
  1047. {
  1048.   /* We fetch characters from PATTERN here.  Even though PATTERN is
  1049.      `char *' (i.e., signed), we declare these variables as unsigned, so
  1050.      they can be reliably used as array indices.  */
  1051.   register unsigned char c, c1;
  1052.   
  1053.   /* A random tempory spot in PATTERN.  */
  1054.   const char *p1;
  1055.  
  1056.   /* Points to the end of the buffer, where we should append.  */
  1057.   register unsigned char *b;
  1058.   
  1059.   /* Keeps track of unclosed groups.  */
  1060.   compile_stack_type compile_stack;
  1061.  
  1062.   /* Points to the current (ending) position in the pattern.  */
  1063.   const char *p = pattern;
  1064.   const char *pend = pattern + size;
  1065.   
  1066.   /* How to translate the characters in the pattern.  */
  1067.   char *translate = bufp->translate;
  1068.  
  1069.   /* Address of the count-byte of the most recently inserted `exactn'
  1070.      command.  This makes it possible to tell if a new exact-match
  1071.      character can be added to that command or if the character requires
  1072.      a new `exactn' command.  */
  1073.   unsigned char *pending_exact = 0;
  1074.  
  1075.   /* Address of start of the most recently finished expression.
  1076.      This tells, e.g., postfix * where to find the start of its
  1077.      operand.  Reset at the beginning of groups and alternatives.  */
  1078.   unsigned char *laststart = 0;
  1079.  
  1080.   /* Address of beginning of regexp, or inside of last group.  */
  1081.   unsigned char *begalt;
  1082.  
  1083.   /* Place in the uncompiled pattern (i.e., the {) to
  1084.      which to go back if the interval is invalid.  */
  1085.   const char *beg_interval;
  1086.                 
  1087.   /* Address of the place where a forward jump should go to the end of
  1088.      the containing expression.  Each alternative of an `or' -- except the
  1089.      last -- ends with a forward jump of this sort.  */
  1090.   unsigned char *fixup_alt_jump = 0;
  1091.  
  1092.   /* Counts open-groups as they are encountered.  Remembered for the
  1093.      matching close-group on the compile stack, so the same register
  1094.      number is put in the stop_memory as the start_memory.  */
  1095.   regnum_t regnum = 0;
  1096.  
  1097. #ifdef DEBUG
  1098.   DEBUG_PRINT1 ("\nCompiling pattern: ");
  1099.   if (debug)
  1100.     {
  1101.       unsigned debug_count;
  1102.       
  1103.       for (debug_count = 0; debug_count < size; debug_count++)
  1104.         printchar (pattern[debug_count]);
  1105.       putchar ('\n');
  1106.     }
  1107. #endif /* DEBUG */
  1108.  
  1109.   /* Initialize the compile stack.  */
  1110.   compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
  1111.   if (compile_stack.stack == NULL)
  1112.     return REG_ESPACE;
  1113.  
  1114.   compile_stack.size = INIT_COMPILE_STACK_SIZE;
  1115.   compile_stack.avail = 0;
  1116.  
  1117.   /* Initialize the pattern buffer.  */
  1118.   bufp->syntax = syntax;
  1119.   bufp->fastmap_accurate = 0;
  1120.   bufp->not_bol = bufp->not_eol = 0;
  1121.  
  1122.   /* Set `used' to zero, so that if we return an error, the pattern
  1123.      printer (for debugging) will think there's no pattern.  We reset it
  1124.      at the end.  */
  1125.   bufp->used = 0;
  1126.   
  1127.   /* Always count groups, whether or not bufp->no_sub is set.  */
  1128.   bufp->re_nsub = 0;                
  1129.  
  1130. #if !defined (emacs) && !defined (SYNTAX_TABLE)
  1131.   /* Initialize the syntax table.  */
  1132.    init_syntax_once ();
  1133. #endif
  1134.  
  1135.   if (bufp->allocated == 0)
  1136.     {
  1137.       if (bufp->buffer)
  1138.     { /* If zero allocated, but buffer is non-null, try to realloc
  1139.              enough space.  This loses if buffer's address is bogus, but
  1140.              that is the user's responsibility.  */
  1141.           RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
  1142.         }
  1143.       else
  1144.         { /* Caller did not allocate a buffer.  Do it for them.  */
  1145.           bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
  1146.         }
  1147.       if (!bufp->buffer) return REG_ESPACE;
  1148.  
  1149.       bufp->allocated = INIT_BUF_SIZE;
  1150.     }
  1151.  
  1152.   begalt = b = bufp->buffer;
  1153.  
  1154.   /* Loop through the uncompiled pattern until we're at the end.  */
  1155.   while (p != pend)
  1156.     {
  1157.       PATFETCH (c);
  1158.  
  1159.       switch (c)
  1160.         {
  1161.         case '^':
  1162.           {
  1163.             if (   /* If at start of pattern, it's an operator.  */
  1164.                    p == pattern + 1
  1165.                    /* If context independent, it's an operator.  */
  1166.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1167.                    /* Otherwise, depends on what's come before.  */
  1168.                 || at_begline_loc_p (pattern, p, syntax))
  1169.               BUF_PUSH (begline);
  1170.             else
  1171.               goto normal_char;
  1172.           }
  1173.           break;
  1174.  
  1175.  
  1176.         case '$':
  1177.           {
  1178.             if (   /* If at end of pattern, it's an operator.  */
  1179.                    p == pend 
  1180.                    /* If context independent, it's an operator.  */
  1181.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1182.                    /* Otherwise, depends on what's next.  */
  1183.                 || at_endline_loc_p (p, pend, syntax))
  1184.                BUF_PUSH (endline);
  1185.              else
  1186.                goto normal_char;
  1187.            }
  1188.            break;
  1189.  
  1190.  
  1191.     case '+':
  1192.         case '?':
  1193.           if ((syntax & RE_BK_PLUS_QM)
  1194.               || (syntax & RE_LIMITED_OPS))
  1195.             goto normal_char;
  1196.         handle_plus:
  1197.         case '*':
  1198.           /* If there is no previous pattern... */
  1199.           if (!laststart)
  1200.             {
  1201.               if (syntax & RE_CONTEXT_INVALID_OPS)
  1202.                 return REG_BADRPT;
  1203.               else if (!(syntax & RE_CONTEXT_INDEP_OPS))
  1204.                 goto normal_char;
  1205.             }
  1206.  
  1207.           {
  1208.             /* Are we optimizing this jump?  */
  1209.             boolean keep_string_p = false;
  1210.             
  1211.             /* 1 means zero (many) matches is allowed.  */
  1212.             char zero_times_ok = 0, many_times_ok = 0;
  1213.  
  1214.             /* If there is a sequence of repetition chars, collapse it
  1215.                down to just one (the right one).  We can't combine
  1216.                interval operators with these because of, e.g., `a{2}*',
  1217.                which should only match an even number of `a's.  */
  1218.  
  1219.             for (;;)
  1220.               {
  1221.                 zero_times_ok |= c != '+';
  1222.                 many_times_ok |= c != '?';
  1223.  
  1224.                 if (p == pend)
  1225.                   break;
  1226.  
  1227.                 PATFETCH (c);
  1228.  
  1229.                 if (c == '*'
  1230.                     || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
  1231.                   ;
  1232.  
  1233.                 else if (syntax & RE_BK_PLUS_QM  &&  c == '\\')
  1234.                   {
  1235.                     if (p == pend) return REG_EESCAPE;
  1236.  
  1237.                     PATFETCH (c1);
  1238.                     if (!(c1 == '+' || c1 == '?'))
  1239.                       {
  1240.                         PATUNFETCH;
  1241.                         PATUNFETCH;
  1242.                         break;
  1243.                       }
  1244.  
  1245.                     c = c1;
  1246.                   }
  1247.                 else
  1248.                   {
  1249.                     PATUNFETCH;
  1250.                     break;
  1251.                   }
  1252.  
  1253.                 /* If we get here, we found another repeat character.  */
  1254.                }
  1255.  
  1256.             /* Star, etc. applied to an empty pattern is equivalent
  1257.                to an empty pattern.  */
  1258.             if (!laststart)  
  1259.               break;
  1260.  
  1261.             /* Now we know whether or not zero matches is allowed
  1262.                and also whether or not two or more matches is allowed.  */
  1263.             if (many_times_ok)
  1264.               { /* More than one repetition is allowed, so put in at the
  1265.                    end a backward relative jump from `b' to before the next
  1266.                    jump we're going to put in below (which jumps from
  1267.                    laststart to after this jump).  
  1268.  
  1269.                    But if we are at the `*' in the exact sequence `.*\n',
  1270.                    insert an unconditional jump backwards to the .,
  1271.                    instead of the beginning of the loop.  This way we only
  1272.                    push a failure point once, instead of every time
  1273.                    through the loop.  */
  1274.                 assert (p - 1 > pattern);
  1275.  
  1276.                 /* Allocate the space for the jump.  */
  1277.                 GET_BUFFER_SPACE (3);
  1278.  
  1279.                 /* We know we are not at the first character of the pattern,
  1280.                    because laststart was nonzero.  And we've already
  1281.                    incremented `p', by the way, to be the character after
  1282.                    the `*'.  Do we have to do something analogous here
  1283.                    for null bytes, because of RE_DOT_NOT_NULL?  */
  1284.                 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
  1285.                     && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
  1286.                     && !(syntax & RE_DOT_NEWLINE))
  1287.                   { /* We have .*\n.  */
  1288.                     STORE_JUMP (jump, b, laststart);
  1289.                     keep_string_p = true;
  1290.                   }
  1291.                 else
  1292.                   /* Anything else.  */
  1293.                   STORE_JUMP (maybe_pop_jump, b, laststart - 3);
  1294.  
  1295.                 /* We've added more stuff to the buffer.  */
  1296.                 b += 3;
  1297.               }
  1298.  
  1299.             /* On failure, jump from laststart to b + 3, which will be the
  1300.                end of the buffer after this jump is inserted.  */
  1301.             GET_BUFFER_SPACE (3);
  1302.             INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
  1303.                                        : on_failure_jump,
  1304.                          laststart, b + 3);
  1305.             pending_exact = 0;
  1306.             b += 3;
  1307.  
  1308.             if (!zero_times_ok)
  1309.               {
  1310.                 /* At least one repetition is required, so insert a
  1311.                    `dummy_failure_jump' before the initial
  1312.                    `on_failure_jump' instruction of the loop. This
  1313.                    effects a skip over that instruction the first time
  1314.                    we hit that loop.  */
  1315.                 GET_BUFFER_SPACE (3);
  1316.                 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);
  1317.                 b += 3;
  1318.               }
  1319.             }
  1320.       break;
  1321.  
  1322.  
  1323.     case '.':
  1324.           laststart = b;
  1325.           BUF_PUSH (anychar);
  1326.           break;
  1327.  
  1328.  
  1329.         case '[':
  1330.           {
  1331.             boolean had_char_class = false;
  1332.  
  1333.             if (p == pend) return REG_EBRACK;
  1334.  
  1335.             /* Ensure that we have enough space to push a charset: the
  1336.                opcode, the length count, and the bitset; 34 bytes in all.  */
  1337.         GET_BUFFER_SPACE (34);
  1338.  
  1339.             laststart = b;
  1340.  
  1341.             /* We test `*p == '^' twice, instead of using an if
  1342.                statement, so we only need one BUF_PUSH.  */
  1343.             BUF_PUSH (*p == '^' ? charset_not : charset); 
  1344.             if (*p == '^')
  1345.               p++;
  1346.  
  1347.             /* Remember the first position in the bracket expression.  */
  1348.             p1 = p;
  1349.  
  1350.             /* Push the number of bytes in the bitmap.  */
  1351.             BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
  1352.  
  1353.             /* Clear the whole map.  */
  1354.             bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
  1355.  
  1356.             /* charset_not matches newline according to a syntax bit.  */
  1357.             if ((re_opcode_t) b[-2] == charset_not
  1358.                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
  1359.               SET_LIST_BIT ('\n');
  1360.  
  1361.             /* Read in characters and ranges, setting map bits.  */
  1362.             for (;;)
  1363.               {
  1364.                 if (p == pend) return REG_EBRACK;
  1365.  
  1366.                 PATFETCH (c);
  1367.  
  1368.                 /* \ might escape characters inside [...] and [^...].  */
  1369.                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
  1370.                   {
  1371.                     if (p == pend) return REG_EESCAPE;
  1372.  
  1373.                     PATFETCH (c1);
  1374.                     SET_LIST_BIT (c1);
  1375.                     continue;
  1376.                   }
  1377.  
  1378.                 /* Could be the end of the bracket expression.  If it's
  1379.                    not (i.e., when the bracket expression is `[]' so
  1380.                    far), the ']' character bit gets set way below.  */
  1381.                 if (c == ']' && p != p1 + 1)
  1382.                   break;
  1383.  
  1384.                 /* Look ahead to see if it's a range when the last thing
  1385.                    was a character class.  */
  1386.                 if (had_char_class && c == '-' && *p != ']')
  1387.                   return REG_ERANGE;
  1388.  
  1389.                 /* Look ahead to see if it's a range when the last thing
  1390.                    was a character: if this is a hyphen not at the
  1391.                    beginning or the end of a list, then it's the range
  1392.                    operator.  */
  1393.                 if (c == '-' 
  1394.                     && !(p - 2 >= pattern && p[-2] == '[') 
  1395.                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
  1396.                     && *p != ']')
  1397.                   {
  1398.                     reg_errcode_t ret
  1399.                       = compile_range (&p, pend, translate, syntax, b);
  1400.                     if (ret != REG_NOERROR) return ret;
  1401.                   }
  1402.  
  1403.                 else if (p[0] == '-' && p[1] != ']')
  1404.                   { /* This handles ranges made up of characters only.  */
  1405.                     reg_errcode_t ret;
  1406.  
  1407.             /* Move past the `-'.  */
  1408.                     PATFETCH (c1);
  1409.                     
  1410.                     ret = compile_range (&p, pend, translate, syntax, b);
  1411.                     if (ret != REG_NOERROR) return ret;
  1412.                   }
  1413.  
  1414.                 /* See if we're at the beginning of a possible character
  1415.                    class.  */
  1416.  
  1417.                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
  1418.                   { /* Leave room for the null.  */
  1419.                     char str[CHAR_CLASS_MAX_LENGTH + 1];
  1420.  
  1421.                     PATFETCH (c);
  1422.                     c1 = 0;
  1423.  
  1424.                     /* If pattern is `[[:'.  */
  1425.                     if (p == pend) return REG_EBRACK;
  1426.  
  1427.                     for (;;)
  1428.                       {
  1429.                         PATFETCH (c);
  1430.                         if (c == ':' || c == ']' || p == pend
  1431.                             || c1 == CHAR_CLASS_MAX_LENGTH)
  1432.                           break;
  1433.                         str[c1++] = c;
  1434.                       }
  1435.                     str[c1] = '\0';
  1436.  
  1437.                     /* If isn't a word bracketed by `[:' and:`]':
  1438.                        undo the ending character, the letters, and leave 
  1439.                        the leading `:' and `[' (but set bits for them).  */
  1440.                     if (c == ':' && *p == ']')
  1441.                       {
  1442.                         int ch;
  1443.                         boolean is_alnum = STREQ (str, "alnum");
  1444.                         boolean is_alpha = STREQ (str, "alpha");
  1445.                         boolean is_blank = STREQ (str, "blank");
  1446.                         boolean is_cntrl = STREQ (str, "cntrl");
  1447.                         boolean is_digit = STREQ (str, "digit");
  1448.                         boolean is_graph = STREQ (str, "graph");
  1449.                         boolean is_lower = STREQ (str, "lower");
  1450.                         boolean is_print = STREQ (str, "print");
  1451.                         boolean is_punct = STREQ (str, "punct");
  1452.                         boolean is_space = STREQ (str, "space");
  1453.                         boolean is_upper = STREQ (str, "upper");
  1454.                         boolean is_xdigit = STREQ (str, "xdigit");
  1455.                         
  1456.                         if (!IS_CHAR_CLASS (str)) return REG_ECTYPE;
  1457.  
  1458.                         /* Throw away the ] at the end of the character
  1459.                            class.  */
  1460.                         PATFETCH (c);                    
  1461.  
  1462.                         if (p == pend) return REG_EBRACK;
  1463.  
  1464.                         for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
  1465.                           {
  1466.                             if (   (is_alnum  && isalnum (ch))
  1467.                                 || (is_alpha  && isalpha (ch))
  1468.                                 || (is_blank  && isblank (ch))
  1469.                                 || (is_cntrl  && iscntrl (ch))
  1470.                                 || (is_digit  && isdigit (ch))
  1471.                                 || (is_graph  && isgraph (ch))
  1472.                                 || (is_lower  && islower (ch))
  1473.                                 || (is_print  && isprint (ch))
  1474.                                 || (is_punct  && ispunct (ch))
  1475.                                 || (is_space  && isspace (ch))
  1476.                                 || (is_upper  && isupper (ch))
  1477.                                 || (is_xdigit && isxdigit (ch)))
  1478.                             SET_LIST_BIT (ch);
  1479.                           }
  1480.                         had_char_class = true;
  1481.                       }
  1482.                     else
  1483.                       {
  1484.                         c1++;
  1485.                         while (c1--)    
  1486.                           PATUNFETCH;
  1487.                         SET_LIST_BIT ('[');
  1488.                         SET_LIST_BIT (':');
  1489.                         had_char_class = false;
  1490.                       }
  1491.                   }
  1492.                 else
  1493.                   {
  1494.                     had_char_class = false;
  1495.                     SET_LIST_BIT (c);
  1496.                   }
  1497.               }
  1498.  
  1499.             /* Discard any (non)matching list bytes that are all 0 at the
  1500.                end of the map.  Decrease the map-length byte too.  */
  1501.             while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) 
  1502.               b[-1]--; 
  1503.             b += b[-1];
  1504.           }
  1505.           break;
  1506.  
  1507.  
  1508.     case '(':
  1509.           if (syntax & RE_NO_BK_PARENS)
  1510.             goto handle_open;
  1511.           else
  1512.             goto normal_char;
  1513.  
  1514.  
  1515.         case ')':
  1516.           if (syntax & RE_NO_BK_PARENS)
  1517.             goto handle_close;
  1518.           else
  1519.             goto normal_char;
  1520.  
  1521.  
  1522.         case '\n':
  1523.           if (syntax & RE_NEWLINE_ALT)
  1524.             goto handle_alt;
  1525.           else
  1526.             goto normal_char;
  1527.  
  1528.  
  1529.     case '|':
  1530.           if (syntax & RE_NO_BK_VBAR)
  1531.             goto handle_alt;
  1532.           else
  1533.             goto normal_char;
  1534.  
  1535.  
  1536.         case '{':
  1537.            if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
  1538.              goto handle_interval;
  1539.            else
  1540.              goto normal_char;
  1541.  
  1542.  
  1543.         case '\\':
  1544.           if (p == pend) return REG_EESCAPE;
  1545.  
  1546.           /* Do not translate the character after the \, so that we can
  1547.              distinguish, e.g., \B from \b, even if we normally would
  1548.              translate, e.g., B to b.  */
  1549.           PATFETCH_RAW (c);
  1550.  
  1551.           switch (c)
  1552.             {
  1553.             case '(':
  1554.               if (syntax & RE_NO_BK_PARENS)
  1555.                 goto normal_backslash;
  1556.  
  1557.             handle_open:
  1558.               bufp->re_nsub++;
  1559.               regnum++;
  1560.  
  1561.               if (COMPILE_STACK_FULL)
  1562.                 { 
  1563.                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
  1564.                             compile_stack_elt_t);
  1565.                   if (compile_stack.stack == NULL) return REG_ESPACE;
  1566.  
  1567.                   compile_stack.size <<= 1;
  1568.                 }
  1569.  
  1570.               /* These are the values to restore when we hit end of this
  1571.                  group.  They are all relative offsets, so that if the
  1572.                  whole pattern moves because of realloc, they will still
  1573.                  be valid.  */
  1574.               COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
  1575.               COMPILE_STACK_TOP.fixup_alt_jump 
  1576.                 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
  1577.               COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
  1578.               COMPILE_STACK_TOP.regnum = regnum;
  1579.  
  1580.               /* We will eventually replace the 0 with the number of
  1581.                  groups inner to this one.  But do not push a
  1582.                  start_memory for groups beyond the last one we can
  1583.                  represent in the compiled pattern.  */
  1584.               if (regnum <= MAX_REGNUM)
  1585.                 {
  1586.                   COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;
  1587.                   BUF_PUSH_3 (start_memory, regnum, 0);
  1588.                 }
  1589.                 
  1590.               compile_stack.avail++;
  1591.  
  1592.               fixup_alt_jump = 0;
  1593.               laststart = 0;
  1594.               begalt = b;
  1595.               break;
  1596.  
  1597.  
  1598.             case ')':
  1599.               if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
  1600.  
  1601.               if (COMPILE_STACK_EMPTY)
  1602.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  1603.                   goto normal_backslash;
  1604.                 else
  1605.                   return REG_ERPAREN;
  1606.  
  1607.             handle_close:
  1608.               if (fixup_alt_jump)
  1609.                 { /* Push a dummy failure point at the end of the
  1610.                      alternative for a possible future
  1611.                      `pop_failure_jump' to pop.  See comments at
  1612.                      `push_dummy_failure' in `re_match_2'.  */
  1613.                   BUF_PUSH (push_dummy_failure);
  1614.                   
  1615.                   /* We allocated space for this jump when we assigned
  1616.                      to `fixup_alt_jump', in the `handle_alt' case below.  */
  1617.                   STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
  1618.                 }
  1619.  
  1620.               /* See similar code for backslashed left paren above.  */
  1621.               if (COMPILE_STACK_EMPTY)
  1622.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  1623.                   goto normal_char;
  1624.                 else
  1625.                   return REG_ERPAREN;
  1626.  
  1627.               /* Since we just checked for an empty stack above, this
  1628.                  ``can't happen''.  */
  1629.               assert (compile_stack.avail != 0);
  1630.               {
  1631.                 /* We don't just want to restore into `regnum', because
  1632.                    later groups should continue to be numbered higher,
  1633.                    as in `(ab)c(de)' -- the second group is #2.  */
  1634.                 regnum_t this_group_regnum;
  1635.  
  1636.                 compile_stack.avail--;        
  1637.                 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
  1638.                 fixup_alt_jump
  1639.                   = COMPILE_STACK_TOP.fixup_alt_jump
  1640.                     ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1 
  1641.                     : 0;
  1642.                 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
  1643.                 this_group_regnum = COMPILE_STACK_TOP.regnum;
  1644.  
  1645.                 /* We're at the end of the group, so now we know how many
  1646.                    groups were inside this one.  */
  1647.                 if (this_group_regnum <= MAX_REGNUM)
  1648.                   {
  1649.                     unsigned char *inner_group_loc
  1650.                       = bufp->buffer + COMPILE_STACK_TOP.inner_group_offset;
  1651.                     
  1652.                     *inner_group_loc = regnum - this_group_regnum;
  1653.                     BUF_PUSH_3 (stop_memory, this_group_regnum,
  1654.                                 regnum - this_group_regnum);
  1655.                   }
  1656.               }
  1657.               break;
  1658.  
  1659.  
  1660.             case '|':                    /* `\|'.  */
  1661.               if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
  1662.                 goto normal_backslash;
  1663.             handle_alt:
  1664.               if (syntax & RE_LIMITED_OPS)
  1665.                 goto normal_char;
  1666.  
  1667.               /* Insert before the previous alternative a jump which
  1668.                  jumps to this alternative if the former fails.  */
  1669.               GET_BUFFER_SPACE (3);
  1670.               INSERT_JUMP (on_failure_jump, begalt, b + 6);
  1671.               pending_exact = 0;
  1672.               b += 3;
  1673.  
  1674.               /* The alternative before this one has a jump after it
  1675.                  which gets executed if it gets matched.  Adjust that
  1676.                  jump so it will jump to this alternative's analogous
  1677.                  jump (put in below, which in turn will jump to the next
  1678.                  (if any) alternative's such jump, etc.).  The last such
  1679.                  jump jumps to the correct final destination.  A picture:
  1680.                           _____ _____ 
  1681.                           |   | |   |   
  1682.                           |   v |   v 
  1683.                          a | b   | c   
  1684.  
  1685.                  If we are at `b', then fixup_alt_jump right now points to a
  1686.                  three-byte space after `a'.  We'll put in the jump, set
  1687.                  fixup_alt_jump to right after `b', and leave behind three
  1688.                  bytes which we'll fill in when we get to after `c'.  */
  1689.  
  1690.               if (fixup_alt_jump)
  1691.                 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  1692.  
  1693.               /* Mark and leave space for a jump after this alternative,
  1694.                  to be filled in later either by next alternative or
  1695.                  when know we're at the end of a series of alternatives.  */
  1696.               fixup_alt_jump = b;
  1697.               GET_BUFFER_SPACE (3);
  1698.               b += 3;
  1699.  
  1700.               laststart = 0;
  1701.               begalt = b;
  1702.               break;
  1703.  
  1704.  
  1705.             case '{': 
  1706.               /* If \{ is a literal.  */
  1707.               if (!(syntax & RE_INTERVALS)
  1708.                      /* If we're at `\{' and it's not the open-interval 
  1709.                         operator.  */
  1710.                   || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
  1711.                   || (p - 2 == pattern  &&  p == pend))
  1712.                 goto normal_backslash;
  1713.  
  1714.             handle_interval:
  1715.               {
  1716.                 /* If got here, then the syntax allows intervals.  */
  1717.  
  1718.                 /* At least (most) this many matches must be made.  */
  1719.                 int lower_bound = -1, upper_bound = -1;
  1720.  
  1721.                 beg_interval = p - 1;
  1722.  
  1723.                 if (p == pend)
  1724.                   {
  1725.                     if (syntax & RE_NO_BK_BRACES)
  1726.                       goto unfetch_interval;
  1727.                     else
  1728.                       return REG_EBRACE;
  1729.                   }
  1730.  
  1731.                 GET_UNSIGNED_NUMBER (lower_bound);
  1732.  
  1733.                 if (c == ',')
  1734.                   {
  1735.                     GET_UNSIGNED_NUMBER (upper_bound);
  1736.                     if (upper_bound < 0) upper_bound = RE_DUP_MAX;
  1737.                   }
  1738.                 else
  1739.                   /* Interval such as `{1}' => match exactly once. */
  1740.                   upper_bound = lower_bound;
  1741.  
  1742.                 if (lower_bound < 0 || upper_bound > RE_DUP_MAX
  1743.                     || lower_bound > upper_bound)
  1744.                   {
  1745.                     if (syntax & RE_NO_BK_BRACES)
  1746.                       goto unfetch_interval;
  1747.                     else 
  1748.                       return REG_BADBR;
  1749.                   }
  1750.  
  1751.                 if (!(syntax & RE_NO_BK_BRACES)) 
  1752.                   {
  1753.                     if (c != '\\') return REG_EBRACE;
  1754.  
  1755.                     PATFETCH (c);
  1756.                   }
  1757.  
  1758.                 if (c != '}')
  1759.                   {
  1760.                     if (syntax & RE_NO_BK_BRACES)
  1761.                       goto unfetch_interval;
  1762.                     else 
  1763.                       return REG_BADBR;
  1764.                   }
  1765.  
  1766.                 /* We just parsed a valid interval.  */
  1767.  
  1768.                 /* If it's invalid to have no preceding re.  */
  1769.                 if (!laststart)
  1770.                   {
  1771.                     if (syntax & RE_CONTEXT_INVALID_OPS)
  1772.                       return REG_BADRPT;
  1773.                     else if (syntax & RE_CONTEXT_INDEP_OPS)
  1774.                       laststart = b;
  1775.                     else
  1776.                       goto unfetch_interval;
  1777.                   }
  1778.  
  1779.                 /* If the upper bound is zero, don't want to succeed at
  1780.                    all; jump from `laststart' to `b + 3', which will be
  1781.                    the end of the buffer after we insert the jump.  */
  1782.                  if (upper_bound == 0)
  1783.                    {
  1784.                      GET_BUFFER_SPACE (3);
  1785.                      INSERT_JUMP (jump, laststart, b + 3);
  1786.                      b += 3;
  1787.                    }
  1788.  
  1789.                  /* Otherwise, we have a nontrivial interval.  When
  1790.                     we're all done, the pattern will look like:
  1791.                       set_number_at <jump count> <upper bound>
  1792.                       set_number_at <succeed_n count> <lower bound>
  1793.                       succeed_n <after jump addr> <succed_n count>
  1794.                       <body of loop>
  1795.                       jump_n <succeed_n addr> <jump count>
  1796.                     (The upper bound and `jump_n' are omitted if
  1797.                     `upper_bound' is 1, though.)  */
  1798.                  else 
  1799.                    { /* If the upper bound is > 1, we need to insert
  1800.                         more at the end of the loop.  */
  1801.                      unsigned nbytes = 10 + (upper_bound > 1) * 10;
  1802.  
  1803.                      GET_BUFFER_SPACE (nbytes);
  1804.  
  1805.                      /* Initialize lower bound of the `succeed_n', even
  1806.                         though it will be set during matching by its
  1807.                         attendant `set_number_at' (inserted next),
  1808.                         because `re_compile_fastmap' needs to know.
  1809.                         Jump to the `jump_n' we might insert below.  */
  1810.                      INSERT_JUMP2 (succeed_n, laststart,
  1811.                                    b + 5 + (upper_bound > 1) * 5,
  1812.                                    lower_bound);
  1813.                      b += 5;
  1814.  
  1815.                      /* Code to initialize the lower bound.  Insert 
  1816.                         before the `succeed_n'.  The `5' is the last two
  1817.                         bytes of this `set_number_at', plus 3 bytes of
  1818.                         the following `succeed_n'.  */
  1819.                      insert_op2 (set_number_at, laststart, 5, lower_bound, b);
  1820.                      b += 5;
  1821.  
  1822.                      if (upper_bound > 1)
  1823.                        { /* More than one repetition is allowed, so
  1824.                             append a backward jump to the `succeed_n'
  1825.                             that starts this interval.
  1826.                             
  1827.                             When we've reached this during matching,
  1828.                             we'll have matched the interval once, so
  1829.                             jump back only `upper_bound - 1' times.  */
  1830.                          STORE_JUMP2 (jump_n, b, laststart + 5,
  1831.                                       upper_bound - 1);
  1832.                          b += 5;
  1833.  
  1834.                          /* The location we want to set is the second
  1835.                             parameter of the `jump_n'; that is `b-2' as
  1836.                             an absolute address.  `laststart' will be
  1837.                             the `set_number_at' we're about to insert;
  1838.                             `laststart+3' the number to set, the source
  1839.                             for the relative address.  But we are
  1840.                             inserting into the middle of the pattern --
  1841.                             so everything is getting moved up by 5.
  1842.                             Conclusion: (b - 2) - (laststart + 3) + 5,
  1843.                             i.e., b - laststart.
  1844.                             
  1845.                             We insert this at the beginning of the loop
  1846.                             so that if we fail during matching, we'll
  1847.                             reinitialize the bounds.  */
  1848.                          insert_op2 (set_number_at, laststart, b - laststart,
  1849.                                      upper_bound - 1, b);
  1850.                          b += 5;
  1851.                        }
  1852.                    }
  1853.                 pending_exact = 0;
  1854.                 beg_interval = NULL;
  1855.               }
  1856.               break;
  1857.  
  1858.             unfetch_interval:
  1859.               /* If an invalid interval, match the characters as literals.  */
  1860.                assert (beg_interval);
  1861.                p = beg_interval;
  1862.                beg_interval = NULL;
  1863.  
  1864.                /* normal_char and normal_backslash need `c'.  */
  1865.                PATFETCH (c);    
  1866.  
  1867.                if (!(syntax & RE_NO_BK_BRACES))
  1868.                  {
  1869.                    if (p > pattern  &&  p[-1] == '\\')
  1870.                      goto normal_backslash;
  1871.                  }
  1872.                goto normal_char;
  1873.  
  1874. #ifdef emacs
  1875.             /* There is no way to specify the before_dot and after_dot
  1876.                operators.  rms says this is ok.  --karl  */
  1877.             case '=':
  1878.               BUF_PUSH (at_dot);
  1879.               break;
  1880.  
  1881.             case 's':    
  1882.               laststart = b;
  1883.               PATFETCH (c);
  1884.               BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
  1885.               break;
  1886.  
  1887.             case 'S':
  1888.               laststart = b;
  1889.               PATFETCH (c);
  1890.               BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
  1891.               break;
  1892. #endif /* emacs */
  1893.  
  1894.  
  1895.             case 'w':
  1896.               laststart = b;
  1897.               BUF_PUSH (wordchar);
  1898.               break;
  1899.  
  1900.  
  1901.             case 'W':
  1902.               laststart = b;
  1903.               BUF_PUSH (notwordchar);
  1904.               break;
  1905.  
  1906.  
  1907.             case '<':
  1908.               BUF_PUSH (wordbeg);
  1909.               break;
  1910.  
  1911.             case '>':
  1912.               BUF_PUSH (wordend);
  1913.               break;
  1914.  
  1915.             case 'b':
  1916.               BUF_PUSH (wordbound);
  1917.               break;
  1918.  
  1919.             case 'B':
  1920.               BUF_PUSH (notwordbound);
  1921.               break;
  1922.  
  1923.             case '`':
  1924.               BUF_PUSH (begbuf);
  1925.               break;
  1926.  
  1927.             case '\'':
  1928.               BUF_PUSH (endbuf);
  1929.               break;
  1930.  
  1931.             case '1': case '2': case '3': case '4': case '5':
  1932.             case '6': case '7': case '8': case '9':
  1933.               if (syntax & RE_NO_BK_REFS)
  1934.                 goto normal_char;
  1935.  
  1936.               c1 = c - '0';
  1937.  
  1938.               if (c1 > regnum)
  1939.                 return REG_ESUBREG;
  1940.  
  1941.               /* Can't back reference to a subexpression if inside of it.  */
  1942.               if (group_in_compile_stack (compile_stack, c1))
  1943.                 goto normal_char;
  1944.  
  1945.               laststart = b;
  1946.               BUF_PUSH_2 (duplicate, c1);
  1947.               break;
  1948.  
  1949.  
  1950.             case '+':
  1951.             case '?':
  1952.               if (syntax & RE_BK_PLUS_QM)
  1953.                 goto handle_plus;
  1954.               else
  1955.                 goto normal_backslash;
  1956.  
  1957.             default:
  1958.             normal_backslash:
  1959.               /* You might think it would be useful for \ to mean
  1960.                  not to translate; but if we don't translate it
  1961.                  it will never match anything.  */
  1962.               c = TRANSLATE (c);
  1963.               goto normal_char;
  1964.             }
  1965.           break;
  1966.  
  1967.  
  1968.     default:
  1969.         /* Expects the character in `c'.  */
  1970.     normal_char:
  1971.           /* If no exactn currently being built.  */
  1972.           if (!pending_exact 
  1973.  
  1974.               /* If last exactn not at current position.  */
  1975.               || pending_exact + *pending_exact + 1 != b
  1976.               
  1977.               /* We have only one byte following the exactn for the count.  */
  1978.           || *pending_exact == (1 << BYTEWIDTH) - 1
  1979.  
  1980.               /* If followed by a repetition operator.  */
  1981.               || *p == '*' || *p == '^'
  1982.           || ((syntax & RE_BK_PLUS_QM)
  1983.           ? *p == '\\' && (p[1] == '+' || p[1] == '?')
  1984.           : (*p == '+' || *p == '?'))
  1985.           || ((syntax & RE_INTERVALS)
  1986.                   && ((syntax & RE_NO_BK_BRACES)
  1987.               ? *p == '{'
  1988.                       : (p[0] == '\\' && p[1] == '{'))))
  1989.         {
  1990.           /* Start building a new exactn.  */
  1991.               
  1992.               laststart = b;
  1993.  
  1994.           BUF_PUSH_2 (exactn, 0);
  1995.           pending_exact = b - 1;
  1996.             }
  1997.             
  1998.       BUF_PUSH (c);
  1999.           (*pending_exact)++;
  2000.       break;
  2001.         } /* switch (c) */
  2002.     } /* while p != pend */
  2003.  
  2004.   
  2005.   /* Through the pattern now.  */
  2006.   
  2007.   if (fixup_alt_jump)
  2008.     STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  2009.  
  2010.   if (!COMPILE_STACK_EMPTY) 
  2011.     return REG_EPAREN;
  2012.  
  2013.   free (compile_stack.stack);
  2014.  
  2015.   /* We have succeeded; set the length of the buffer.  */
  2016.   bufp->used = b - bufp->buffer;
  2017.  
  2018. #ifdef DEBUG
  2019.   if (debug)
  2020.     {
  2021.       DEBUG_PRINT1 ("\nCompiled pattern: ");
  2022.       print_compiled_pattern (bufp);
  2023.     }
  2024. #endif /* DEBUG */
  2025.  
  2026.   return REG_NOERROR;
  2027. } /* regex_compile */
  2028.  
  2029. /* Subroutines for `regex_compile'.  */
  2030.  
  2031. /* Store OP at LOC followed by two-byte integer parameter ARG.  */
  2032.  
  2033. static void
  2034. store_op1 (op, loc, arg)
  2035.     re_opcode_t op;
  2036.     unsigned char *loc;
  2037.     int arg;
  2038. {
  2039.   *loc = (unsigned char) op;
  2040.   STORE_NUMBER (loc + 1, arg);
  2041. }
  2042.  
  2043.  
  2044. /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2.  */
  2045.  
  2046. static void
  2047. store_op2 (op, loc, arg1, arg2)
  2048.     re_opcode_t op;
  2049.     unsigned char *loc;
  2050.     int arg1, arg2;
  2051. {
  2052.   *loc = (unsigned char) op;
  2053.   STORE_NUMBER (loc + 1, arg1);
  2054.   STORE_NUMBER (loc + 3, arg2);
  2055. }
  2056.  
  2057.  
  2058. /* Copy the bytes from LOC to END to open up three bytes of space at LOC
  2059.    for OP followed by two-byte integer parameter ARG.  */
  2060.  
  2061. static void
  2062. insert_op1 (op, loc, arg, end)
  2063.     re_opcode_t op;
  2064.     unsigned char *loc;
  2065.     int arg;
  2066.     unsigned char *end;    
  2067. {
  2068.   register unsigned char *pfrom = end;
  2069.   register unsigned char *pto = end + 3;
  2070.  
  2071.   while (pfrom != loc)
  2072.     *--pto = *--pfrom;
  2073.     
  2074.   store_op1 (op, loc, arg);
  2075. }
  2076.  
  2077.  
  2078. /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2.  */
  2079.  
  2080. static void
  2081. insert_op2 (op, loc, arg1, arg2, end)
  2082.     re_opcode_t op;
  2083.     unsigned char *loc;
  2084.     int arg1, arg2;
  2085.     unsigned char *end;    
  2086. {
  2087.   register unsigned char *pfrom = end;
  2088.   register unsigned char *pto = end + 5;
  2089.  
  2090.   while (pfrom != loc)
  2091.     *--pto = *--pfrom;
  2092.     
  2093.   store_op2 (op, loc, arg1, arg2);
  2094. }
  2095.  
  2096.  
  2097. /* P points to just after a ^ in PATTERN.  Return true if that ^ comes
  2098.    after an alternative or a begin-subexpression.  We assume there is at
  2099.    least one character before the ^.  */
  2100.  
  2101. static boolean
  2102. at_begline_loc_p (pattern, p, syntax)
  2103.     const char *pattern, *p;
  2104.     reg_syntax_t syntax;
  2105. {
  2106.   const char *prev = p - 2;
  2107.   boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
  2108.   
  2109.   return
  2110.        /* After a subexpression?  */
  2111.        (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
  2112.        /* After an alternative?  */
  2113.     || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
  2114. }
  2115.  
  2116.  
  2117. /* The dual of at_begline_loc_p.  This one is for $.  We assume there is
  2118.    at least one character after the $, i.e., `P < PEND'.  */
  2119.  
  2120. static boolean
  2121. at_endline_loc_p (p, pend, syntax)
  2122.     const char *p, *pend;
  2123.     int syntax;
  2124. {
  2125.   const char *next = p;
  2126.   boolean next_backslash = *next == '\\';
  2127.   const char *next_next = p + 1 < pend ? p + 1 : NULL;
  2128.   
  2129.   return
  2130.        /* Before a subexpression?  */
  2131.        (syntax & RE_NO_BK_PARENS ? *next == ')'
  2132.         : next_backslash && next_next && *next_next == ')')
  2133.        /* Before an alternative?  */
  2134.     || (syntax & RE_NO_BK_VBAR ? *next == '|'
  2135.         : next_backslash && next_next && *next_next == '|');
  2136. }
  2137.  
  2138.  
  2139. /* Returns true if REGNUM is in one of COMPILE_STACK's elements and 
  2140.    false if it's not.  */
  2141.  
  2142. static boolean
  2143. group_in_compile_stack (compile_stack, regnum)
  2144.     compile_stack_type compile_stack;
  2145.     regnum_t regnum;
  2146. {
  2147.   int this_element;
  2148.  
  2149.   for (this_element = compile_stack.avail - 1;  
  2150.        this_element >= 0; 
  2151.        this_element--)
  2152.     if (compile_stack.stack[this_element].regnum == regnum)
  2153.       return true;
  2154.  
  2155.   return false;
  2156. }
  2157.  
  2158.  
  2159. /* Read the ending character of a range (in a bracket expression) from the
  2160.    uncompiled pattern *P_PTR (which ends at PEND).  We assume the
  2161.    starting character is in `P[-2]'.  (`P[-1]' is the character `-'.)
  2162.    Then we set the translation of all bits between the starting and
  2163.    ending characters (inclusive) in the compiled pattern B.
  2164.    
  2165.    Return an error code.
  2166.    
  2167.    We use these short variable names so we can use the same macros as
  2168.    `regex_compile' itself.  */
  2169.  
  2170. static reg_errcode_t
  2171. compile_range (p_ptr, pend, translate, syntax, b)
  2172.     const char **p_ptr, *pend;
  2173.     char *translate;
  2174.     reg_syntax_t syntax;
  2175.     unsigned char *b;
  2176. {
  2177.   unsigned this_char;
  2178.  
  2179.   const char *p = *p_ptr;
  2180.   
  2181.   /* Even though the pattern is a signed `char *', we need to fetch into
  2182.      `unsigned char's.  Reason: if the high bit of the pattern character
  2183.      is set, the range endpoints will be negative if we fetch into a
  2184.      signed `char *'.  */
  2185.   unsigned char range_end;
  2186.   unsigned char range_start = p[-2];
  2187.  
  2188.   if (p == pend)
  2189.     return REG_ERANGE;
  2190.  
  2191.   PATFETCH_RAW (range_end);
  2192.  
  2193.   /* Have to increment the pointer into the pattern string, so the
  2194.      caller isn't still at the ending character.  */
  2195.   (*p_ptr)++;
  2196.  
  2197.   /* If the start is after the end, the range is empty.  */
  2198.   if (range_start > range_end)
  2199.     return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
  2200.  
  2201.   /* Here we see why `this_char' has to be larger than an `unsigned
  2202.      char' -- the range is inclusive, so if `range_end' == 0xff
  2203.      (assuming 8-bit characters), we would otherwise go into an infinite
  2204.      loop, since all characters <= 0xff.  */
  2205.   for (this_char = range_start; this_char <= range_end; this_char++)
  2206.     {
  2207.       SET_LIST_BIT (TRANSLATE (this_char));
  2208.     }
  2209.   
  2210.   return REG_NOERROR;
  2211. }
  2212.  
  2213. /* Failure stack declarations and macros; both re_compile_fastmap and
  2214.    re_match_2 use a failure stack.  These have to be macros because of
  2215.    REGEX_ALLOCATE.  */
  2216.    
  2217.  
  2218. /* Number of failure points for which to initially allocate space
  2219.    when matching.  If this number is exceeded, we allocate more
  2220.    space, so it is not a hard limit.  */
  2221. #ifndef INIT_FAILURE_ALLOC
  2222. #define INIT_FAILURE_ALLOC 5
  2223. #endif
  2224.  
  2225. /* Roughly the maximum number of failure points on the stack.  Would be
  2226.    exactly that if always used MAX_FAILURE_SPACE each time we failed.
  2227.    This is a variable only so users of regex can assign to it; we never
  2228.    change it ourselves.  */
  2229. int re_max_failures = 2000;
  2230.  
  2231. typedef const unsigned char *fail_stack_elt_t;
  2232.  
  2233. typedef struct
  2234. {
  2235.   fail_stack_elt_t *stack;
  2236.   unsigned size;
  2237.   unsigned avail;            /* Offset of next open position.  */
  2238. } fail_stack_type;
  2239.  
  2240. #define FAIL_STACK_EMPTY()     (fail_stack.avail == 0)
  2241. #define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
  2242. #define FAIL_STACK_FULL()      (fail_stack.avail == fail_stack.size)
  2243. #define FAIL_STACK_TOP()       (fail_stack.stack[fail_stack.avail])
  2244.  
  2245.  
  2246. /* Initialize `fail_stack'.  Do `return -2' if the alloc fails.  */
  2247.  
  2248. #define INIT_FAIL_STACK()                        \
  2249.   do {                                    \
  2250.     fail_stack.stack = (fail_stack_elt_t *)                \
  2251.       REGEX_ALLOCATE (INIT_FAILURE_ALLOC * sizeof (fail_stack_elt_t));    \
  2252.                                     \
  2253.     if (fail_stack.stack == NULL)                    \
  2254.       return -2;                            \
  2255.                                     \
  2256.     fail_stack.size = INIT_FAILURE_ALLOC;                \
  2257.     fail_stack.avail = 0;                        \
  2258.   } while (0)
  2259.  
  2260.  
  2261. /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
  2262.  
  2263.    Return 1 if succeeds, and 0 if either ran out of memory
  2264.    allocating space for it or it was already too large.  
  2265.    
  2266.    REGEX_REALLOCATE requires `destination' be declared.   */
  2267.  
  2268. #define DOUBLE_FAIL_STACK(fail_stack)                    \
  2269.   ((fail_stack).size > re_max_failures * MAX_FAILURE_ITEMS        \
  2270.    ? 0                                    \
  2271.    : ((fail_stack).stack = (fail_stack_elt_t *)                \
  2272.         REGEX_REALLOCATE ((fail_stack).stack,                 \
  2273.           (fail_stack).size * sizeof (fail_stack_elt_t),        \
  2274.           ((fail_stack).size << 1) * sizeof (fail_stack_elt_t)),    \
  2275.                                     \
  2276.       (fail_stack).stack == NULL                    \
  2277.       ? 0                                \
  2278.       : ((fail_stack).size <<= 1,                     \
  2279.          1)))
  2280.  
  2281.  
  2282. /* Push PATTERN_OP on FAIL_STACK. 
  2283.  
  2284.    Return 1 if was able to do so and 0 if ran out of memory allocating
  2285.    space to do so.  */
  2286. #define PUSH_PATTERN_OP(pattern_op, fail_stack)                \
  2287.   ((FAIL_STACK_FULL ()                            \
  2288.     && !DOUBLE_FAIL_STACK (fail_stack))                    \
  2289.     ? 0                                    \
  2290.     : ((fail_stack).stack[(fail_stack).avail++] = pattern_op,        \
  2291.        1))
  2292.  
  2293. /* This pushes an item onto the failure stack.  Must be a four-byte
  2294.    value.  Assumes the variable `fail_stack'.  Probably should only
  2295.    be called from within `PUSH_FAILURE_POINT'.  */
  2296. #define PUSH_FAILURE_ITEM(item)                        \
  2297.   fail_stack.stack[fail_stack.avail++] = (fail_stack_elt_t) item
  2298.  
  2299. /* The complement operation.  Assumes `fail_stack' is nonempty.  */
  2300. #define POP_FAILURE_ITEM() fail_stack.stack[--fail_stack.avail]
  2301.  
  2302. /* Used to omit pushing failure point id's when we're not debugging.  */
  2303. #ifdef DEBUG
  2304. #define DEBUG_PUSH PUSH_FAILURE_ITEM
  2305. #define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_ITEM ()
  2306. #else
  2307. #define DEBUG_PUSH(item)
  2308. #define DEBUG_POP(item_addr)
  2309. #endif
  2310.  
  2311.  
  2312. /* Push the information about the state we will need
  2313.    if we ever fail back to it.  
  2314.    
  2315.    Requires variables fail_stack, regstart, regend, reg_info, and
  2316.    num_regs be declared.  DOUBLE_FAIL_STACK requires `destination' be
  2317.    declared.
  2318.    
  2319.    Does `return FAILURE_CODE' if runs out of memory.  */
  2320.  
  2321. #define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code)    \
  2322.   do {                                    \
  2323.     char *destination;                            \
  2324.     /* Must be int, so when we don't save any registers, the arithmetic    \
  2325.        of 0 + -1 isn't done as unsigned.  */                \
  2326.     int this_reg;                            \
  2327.                                         \
  2328.     DEBUG_STATEMENT (failure_id++);                    \
  2329.     DEBUG_STATEMENT (nfailure_points_pushed++);                \
  2330.     DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id);        \
  2331.     DEBUG_PRINT2 ("  Before push, next avail: %d\n", (fail_stack).avail);\
  2332.     DEBUG_PRINT2 ("                     size: %d\n", (fail_stack).size);\
  2333.                                     \
  2334.     DEBUG_PRINT2 ("  slots needed: %d\n", NUM_FAILURE_ITEMS);        \
  2335.     DEBUG_PRINT2 ("     available: %d\n", REMAINING_AVAIL_SLOTS);    \
  2336.                                     \
  2337.     /* Ensure we have enough space allocated for what we will push.  */    \
  2338.     while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS)            \
  2339.       {                                    \
  2340.         if (!DOUBLE_FAIL_STACK (fail_stack))            \
  2341.           return failure_code;                        \
  2342.                                     \
  2343.         DEBUG_PRINT2 ("\n  Doubled stack; size now: %d\n",        \
  2344.                (fail_stack).size);                \
  2345.         DEBUG_PRINT2 ("  slots available: %d\n", REMAINING_AVAIL_SLOTS);\
  2346.       }                                    \
  2347.                                     \
  2348.     /* Push the info, starting with the registers.  */            \
  2349.     DEBUG_PRINT1 ("\n");                        \
  2350.                                     \
  2351.     for (this_reg = lowest_active_reg; this_reg <= highest_active_reg;    \
  2352.          this_reg++)                            \
  2353.       {                                    \
  2354.     DEBUG_PRINT2 ("  Pushing reg: %d\n", this_reg);            \
  2355.         DEBUG_STATEMENT (num_regs_pushed++);                \
  2356.                                     \
  2357.     DEBUG_PRINT2 ("    start: 0x%x\n", regstart[this_reg]);        \
  2358.         PUSH_FAILURE_ITEM (regstart[this_reg]);                \
  2359.                                                                         \
  2360.     DEBUG_PRINT2 ("    end: 0x%x\n", regend[this_reg]);        \
  2361.         PUSH_FAILURE_ITEM (regend[this_reg]);                \
  2362.                                     \
  2363.     DEBUG_PRINT2 ("    info: 0x%x\n      ", reg_info[this_reg]);    \
  2364.         DEBUG_PRINT2 (" match_null=%d",                    \
  2365.                       REG_MATCH_NULL_STRING_P (reg_info[this_reg]));    \
  2366.         DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg]));    \
  2367.         DEBUG_PRINT2 (" matched_something=%d",                \
  2368.                       MATCHED_SOMETHING (reg_info[this_reg]));        \
  2369.         DEBUG_PRINT2 (" ever_matched=%d",                \
  2370.                       EVER_MATCHED_SOMETHING (reg_info[this_reg]));    \
  2371.     DEBUG_PRINT1 ("\n");                        \
  2372.         PUSH_FAILURE_ITEM (reg_info[this_reg].word);            \
  2373.       }                                    \
  2374.                                     \
  2375.     DEBUG_PRINT2 ("  Pushing  low active reg: %d\n", lowest_active_reg);\
  2376.     PUSH_FAILURE_ITEM (lowest_active_reg);                \
  2377.                                     \
  2378.     DEBUG_PRINT2 ("  Pushing high active reg: %d\n", highest_active_reg);\
  2379.     PUSH_FAILURE_ITEM (highest_active_reg);                \
  2380.                                     \
  2381.     DEBUG_PRINT2 ("  Pushing pattern 0x%x: ", pattern_place);        \
  2382.     DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend);        \
  2383.     PUSH_FAILURE_ITEM (pattern_place);                    \
  2384.                                     \
  2385.     DEBUG_PRINT2 ("  Pushing string 0x%x: `", string_place);        \
  2386.     DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2,   \
  2387.                  size2);                \
  2388.     DEBUG_PRINT1 ("'\n");                        \
  2389.     PUSH_FAILURE_ITEM (string_place);                    \
  2390.                                     \
  2391.     DEBUG_PRINT2 ("  Pushing failure id: %u\n", failure_id);        \
  2392.     DEBUG_PUSH (failure_id);                        \
  2393.   } while (0)
  2394.  
  2395. /* This is the number of items that are pushed and popped on the stack
  2396.    for each register.  */
  2397. #define NUM_REG_ITEMS  3
  2398.  
  2399. /* Individual items aside from the registers.  */
  2400. #ifdef DEBUG
  2401. #define NUM_NONREG_ITEMS 5 /* Includes failure point id.  */
  2402. #else
  2403. #define NUM_NONREG_ITEMS 4
  2404. #endif
  2405.  
  2406. /* We push at most this many items on the stack.  */
  2407. #define MAX_FAILURE_ITEMS ((num_regs - 1) * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
  2408.  
  2409. /* We actually push this many items.  */
  2410. #define NUM_FAILURE_ITEMS                        \
  2411.   ((highest_active_reg - lowest_active_reg + 1) * NUM_REG_ITEMS     \
  2412.     + NUM_NONREG_ITEMS)
  2413.  
  2414. /* How many items can still be added to the stack without overflowing it.  */
  2415. #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
  2416.  
  2417.  
  2418. /* Pops what PUSH_FAIL_STACK pushes.
  2419.  
  2420.    We restore into the parameters, all of which should be lvalues:
  2421.      STR -- the saved data position.
  2422.      PAT -- the saved pattern position.
  2423.      LOW_REG, HIGH_REG -- the highest and lowest active registers.
  2424.      REGSTART, REGEND -- arrays of string positions.
  2425.      REG_INFO -- array of information about each subexpression.
  2426.    
  2427.    Also assumes the variables `fail_stack' and (if debugging), `bufp',
  2428.    `pend', `string1', `size1', `string2', and `size2'.  */
  2429.  
  2430. #define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
  2431. {                                    \
  2432.   DEBUG_STATEMENT (fail_stack_elt_t failure_id;)            \
  2433.   int this_reg;                                \
  2434.   const unsigned char *string_temp;                    \
  2435.                                     \
  2436.   assert (!FAIL_STACK_EMPTY ());                    \
  2437.                                     \
  2438.   /* Remove failure points and point to how many regs pushed.  */    \
  2439.   DEBUG_PRINT1 ("POP_FAILURE_POINT:\n");                \
  2440.   DEBUG_PRINT2 ("  Before pop, next avail: %d\n", fail_stack.avail);    \
  2441.   DEBUG_PRINT2 ("                    size: %d\n", fail_stack.size);    \
  2442.                                     \
  2443.   assert (fail_stack.avail >= NUM_NONREG_ITEMS);            \
  2444.                                     \
  2445.   DEBUG_POP (&failure_id);                        \
  2446.   DEBUG_PRINT2 ("  Popping failure id: %u\n", failure_id);        \
  2447.                                     \
  2448.   /* If the saved string location is NULL, it came from an        \
  2449.      on_failure_keep_string_jump opcode, and we want to throw away the    \
  2450.      saved NULL, thus retaining our current position in the string.  */    \
  2451.   string_temp = POP_FAILURE_ITEM ();                    \
  2452.   if (string_temp != NULL)                        \
  2453.     str = (const char *) string_temp;                    \
  2454.                                     \
  2455.   DEBUG_PRINT2 ("  Popping string 0x%x: `", str);            \
  2456.   DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2);    \
  2457.   DEBUG_PRINT1 ("'\n");                            \
  2458.                                     \
  2459.   pat = (unsigned char *) POP_FAILURE_ITEM ();                \
  2460.   DEBUG_PRINT2 ("  Popping pattern 0x%x: ", pat);            \
  2461.   DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend);            \
  2462.                                     \
  2463.   /* Restore register info.  */                        \
  2464.   high_reg = (unsigned) POP_FAILURE_ITEM ();                \
  2465.   DEBUG_PRINT2 ("  Popping high active reg: %d\n", high_reg);        \
  2466.                                     \
  2467.   low_reg = (unsigned) POP_FAILURE_ITEM ();                \
  2468.   DEBUG_PRINT2 ("  Popping  low active reg: %d\n", low_reg);        \
  2469.                                     \
  2470.   for (this_reg = high_reg; this_reg >= low_reg; this_reg--)        \
  2471.     {                                    \
  2472.       DEBUG_PRINT2 ("    Popping reg: %d\n", this_reg);            \
  2473.                                     \
  2474.       reg_info[this_reg].word = POP_FAILURE_ITEM ();            \
  2475.       DEBUG_PRINT2 ("      info: 0x%x\n", reg_info[this_reg]);        \
  2476.                                     \
  2477.       regend[this_reg] = (const char *) POP_FAILURE_ITEM ();        \
  2478.       DEBUG_PRINT2 ("      end: 0x%x\n", regend[this_reg]);        \
  2479.                                     \
  2480.       regstart[this_reg] = (const char *) POP_FAILURE_ITEM ();        \
  2481.       DEBUG_PRINT2 ("      start: 0x%x\n", regstart[this_reg]);        \
  2482.     }                                    \
  2483.                                     \
  2484.   DEBUG_STATEMENT (nfailure_points_popped++);                \
  2485. } /* POP_FAILURE_POINT */
  2486.  
  2487. /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
  2488.    BUFP.  A fastmap records which of the (1 << BYTEWIDTH) possible
  2489.    characters can start a string that matches the pattern.  This fastmap
  2490.    is used by re_search to skip quickly over impossible starting points.
  2491.  
  2492.    The caller must supply the address of a (1 << BYTEWIDTH)-byte data
  2493.    area as BUFP->fastmap.
  2494.    
  2495.    We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
  2496.    the pattern buffer.
  2497.  
  2498.    Returns 0 if we succeed, -2 if an internal error.   */
  2499.  
  2500. int
  2501. re_compile_fastmap (bufp)
  2502.      struct re_pattern_buffer *bufp;
  2503. {
  2504.   int j, k;
  2505.   fail_stack_type fail_stack;
  2506. #ifndef REGEX_MALLOC
  2507.   char *destination;
  2508. #endif
  2509.   /* We don't push any register information onto the failure stack.  */
  2510.   unsigned num_regs = 0;
  2511.   
  2512.   register char *fastmap = bufp->fastmap;
  2513.   unsigned char *pattern = bufp->buffer;
  2514.   unsigned long size = bufp->used;
  2515.   const unsigned char *p = pattern;
  2516.   register unsigned char *pend = pattern + size;
  2517.  
  2518.   /* Assume that each path through the pattern can be null until
  2519.      proven otherwise.  We set this false at the bottom of switch
  2520.      statement, to which we get only if a particular path doesn't
  2521.      match the empty string.  */
  2522.   boolean path_can_be_null = true;
  2523.  
  2524.   /* We aren't doing a `succeed_n' to begin with.  */
  2525.   boolean succeed_n_p = false;
  2526.  
  2527.   assert (fastmap != NULL && p != NULL);
  2528.   
  2529.   INIT_FAIL_STACK ();
  2530.   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
  2531.   bufp->fastmap_accurate = 1;        /* It will be when we're done.  */
  2532.   bufp->can_be_null = 0;
  2533.       
  2534.   while (p != pend || !FAIL_STACK_EMPTY ())
  2535.     {
  2536.       if (p == pend)
  2537.         {
  2538.           bufp->can_be_null |= path_can_be_null;
  2539.           
  2540.           /* Reset for next path.  */
  2541.           path_can_be_null = true;
  2542.           
  2543.           p = fail_stack.stack[--fail_stack.avail];
  2544.     }
  2545.  
  2546.       /* We should never be about to go beyond the end of the pattern.  */
  2547.       assert (p < pend);
  2548.       
  2549. #ifdef SWITCH_ENUM_BUG
  2550.       switch ((int) ((re_opcode_t) *p++))
  2551. #else
  2552.       switch ((re_opcode_t) *p++)
  2553. #endif
  2554.     {
  2555.  
  2556.         /* I guess the idea here is to simply not bother with a fastmap
  2557.            if a backreference is used, since it's too hard to figure out
  2558.            the fastmap for the corresponding group.  Setting
  2559.            `can_be_null' stops `re_search_2' from using the fastmap, so
  2560.            that is all we do.  */
  2561.     case duplicate:
  2562.       bufp->can_be_null = 1;
  2563.           return 0;
  2564.  
  2565.  
  2566.       /* Following are the cases which match a character.  These end
  2567.          with `break'.  */
  2568.  
  2569.     case exactn:
  2570.           fastmap[p[1]] = 1;
  2571.       break;
  2572.  
  2573.  
  2574.         case charset:
  2575.           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  2576.         if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
  2577.               fastmap[j] = 1;
  2578.       break;
  2579.  
  2580.  
  2581.     case charset_not:
  2582.       /* Chars beyond end of map must be allowed.  */
  2583.       for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
  2584.             fastmap[j] = 1;
  2585.  
  2586.       for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  2587.         if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
  2588.               fastmap[j] = 1;
  2589.           break;
  2590.  
  2591.  
  2592.     case wordchar:
  2593.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2594.         if (SYNTAX (j) == Sword)
  2595.           fastmap[j] = 1;
  2596.       break;
  2597.  
  2598.  
  2599.     case notwordchar:
  2600.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2601.         if (SYNTAX (j) != Sword)
  2602.           fastmap[j] = 1;
  2603.       break;
  2604.  
  2605.  
  2606.         case anychar:
  2607.           /* `.' matches anything ...  */
  2608.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2609.             fastmap[j] = 1;
  2610.  
  2611.           /* ... except perhaps newline.  */
  2612.           if (!(bufp->syntax & RE_DOT_NEWLINE))
  2613.             fastmap['\n'] = 0;
  2614.  
  2615.           /* Return if we have already set `can_be_null'; if we have,
  2616.              then the fastmap is irrelevant.  Something's wrong here.  */
  2617.       else if (bufp->can_be_null)
  2618.         return 0;
  2619.  
  2620.           /* Otherwise, have to check alternative paths.  */
  2621.       break;
  2622.  
  2623.  
  2624. #ifdef emacs
  2625.         case syntaxspec:
  2626.       k = *p++;
  2627.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2628.         if (SYNTAX (j) == (enum syntaxcode) k)
  2629.           fastmap[j] = 1;
  2630.       break;
  2631.  
  2632.  
  2633.     case notsyntaxspec:
  2634.       k = *p++;
  2635.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2636.         if (SYNTAX (j) != (enum syntaxcode) k)
  2637.           fastmap[j] = 1;
  2638.       break;
  2639.  
  2640.  
  2641.       /* All cases after this match the empty string.  These end with
  2642.          `continue'.  */
  2643.  
  2644.  
  2645.     case before_dot:
  2646.     case at_dot:
  2647.     case after_dot:
  2648.           continue;
  2649. #endif /* not emacs */
  2650.  
  2651.  
  2652.         case no_op:
  2653.         case begline:
  2654.         case endline:
  2655.     case begbuf:
  2656.     case endbuf:
  2657.     case wordbound:
  2658.     case notwordbound:
  2659.     case wordbeg:
  2660.     case wordend:
  2661.         case push_dummy_failure:
  2662.           continue;
  2663.  
  2664.  
  2665.     case jump_n:
  2666.         case pop_failure_jump:
  2667.     case maybe_pop_jump:
  2668.     case jump:
  2669.         case jump_past_alt:
  2670.     case dummy_failure_jump:
  2671.           EXTRACT_NUMBER_AND_INCR (j, p);
  2672.       p += j;    
  2673.       if (j > 0)
  2674.         continue;
  2675.             
  2676.           /* Jump backward implies we just went through the body of a
  2677.              loop and matched nothing.  Opcode jumped to should be
  2678.              `on_failure_jump' or `succeed_n'.  Just treat it like an
  2679.              ordinary jump.  For a * loop, it has pushed its failure
  2680.              point already; if so, discard that as redundant.  */
  2681.           if ((re_opcode_t) *p != on_failure_jump
  2682.           && (re_opcode_t) *p != succeed_n)
  2683.         continue;
  2684.  
  2685.           p++;
  2686.           EXTRACT_NUMBER_AND_INCR (j, p);
  2687.           p += j;        
  2688.       
  2689.           /* If what's on the stack is where we are now, pop it.  */
  2690.           if (!FAIL_STACK_EMPTY () 
  2691.           && fail_stack.stack[fail_stack.avail - 1] == p)
  2692.             fail_stack.avail--;
  2693.  
  2694.           continue;
  2695.  
  2696.  
  2697.         case on_failure_jump:
  2698.         case on_failure_keep_string_jump:
  2699.     handle_on_failure_jump:
  2700.           EXTRACT_NUMBER_AND_INCR (j, p);
  2701.  
  2702.           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
  2703.              end of the pattern.  We don't want to push such a point,
  2704.              since when we restore it above, entering the switch will
  2705.              increment `p' past the end of the pattern.  We don't need
  2706.              to push such a point since we obviously won't find any more
  2707.              fastmap entries beyond `pend'.  Such a pattern can match
  2708.              the null string, though.  */
  2709.           if (p + j < pend)
  2710.             {
  2711.               if (!PUSH_PATTERN_OP (p + j, fail_stack))
  2712.                 return -2;
  2713.             }
  2714.           else
  2715.             bufp->can_be_null = 1;
  2716.  
  2717.           if (succeed_n_p)
  2718.             {
  2719.               EXTRACT_NUMBER_AND_INCR (k, p);    /* Skip the n.  */
  2720.               succeed_n_p = false;
  2721.         }
  2722.  
  2723.           continue;
  2724.  
  2725.  
  2726.     case succeed_n:
  2727.           /* Get to the number of times to succeed.  */
  2728.           p += 2;        
  2729.  
  2730.           /* Increment p past the n for when k != 0.  */
  2731.           EXTRACT_NUMBER_AND_INCR (k, p);
  2732.           if (k == 0)
  2733.         {
  2734.               p -= 4;
  2735.             succeed_n_p = true;  /* Spaghetti code alert.  */
  2736.               goto handle_on_failure_jump;
  2737.             }
  2738.           continue;
  2739.  
  2740.  
  2741.     case set_number_at:
  2742.           p += 4;
  2743.           continue;
  2744.  
  2745.  
  2746.     case start_memory:
  2747.         case stop_memory:
  2748.       p += 2;
  2749.       continue;
  2750.  
  2751.  
  2752.     default:
  2753.           abort (); /* We have listed all the cases.  */
  2754.         } /* switch *p++ */
  2755.  
  2756.       /* Getting here means we have found the possible starting
  2757.          characters for one path of the pattern -- and that the empty
  2758.          string does not match.  We need not follow this path further.
  2759.          Instead, look at the next alternative (remembered on the
  2760.          stack), or quit if no more.  The test at the top of the loop
  2761.          does these things.  */
  2762.       path_can_be_null = false;
  2763.       p = pend;
  2764.     } /* while p */
  2765.  
  2766.   /* Set `can_be_null' for the last path (also the first path, if the
  2767.      pattern is empty).  */
  2768.   bufp->can_be_null |= path_can_be_null;
  2769.   return 0;
  2770. } /* re_compile_fastmap */
  2771.  
  2772. /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
  2773.    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
  2774.    this memory for recording register information.  STARTS and ENDS
  2775.    must be allocated using the malloc library routine, and must each
  2776.    be at least NUM_REGS * sizeof (regoff_t) bytes long.
  2777.  
  2778.    If NUM_REGS == 0, then subsequent matches should allocate their own
  2779.    register data.
  2780.  
  2781.    Unless this function is called, the first search or match using
  2782.    PATTERN_BUFFER will allocate its own register data, without
  2783.    freeing the old data.  */
  2784.  
  2785. void
  2786. re_set_registers (bufp, regs, num_regs, starts, ends)
  2787.     struct re_pattern_buffer *bufp;
  2788.     struct re_registers *regs;
  2789.     unsigned num_regs;
  2790.     regoff_t *starts, *ends;
  2791. {
  2792.   if (num_regs)
  2793.     {
  2794.       bufp->regs_allocated = REGS_REALLOCATE;
  2795.       regs->num_regs = num_regs;
  2796.       regs->start = starts;
  2797.       regs->end = ends;
  2798.     }
  2799.   else
  2800.     {
  2801.       bufp->regs_allocated = REGS_UNALLOCATED;
  2802.       regs->num_regs = 0;
  2803.       regs->start = regs->end = (regoff_t) 0;
  2804.     }
  2805. }
  2806.  
  2807. /* Searching routines.  */
  2808.  
  2809. /* Like re_search_2, below, but only one string is specified, and
  2810.    doesn't let you say where to stop matching. */
  2811.  
  2812. int
  2813. re_search (bufp, string, size, startpos, range, regs)
  2814.      struct re_pattern_buffer *bufp;
  2815.      const char *string;
  2816.      int size, startpos, range;
  2817.      struct re_registers *regs;
  2818. {
  2819.   return re_search_2 (bufp, NULL, 0, string, size, startpos, range, 
  2820.               regs, size);
  2821. }
  2822.  
  2823.  
  2824. /* Using the compiled pattern in BUFP->buffer, first tries to match the
  2825.    virtual concatenation of STRING1 and STRING2, starting first at index
  2826.    STARTPOS, then at STARTPOS + 1, and so on.
  2827.    
  2828.    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
  2829.    
  2830.    RANGE is how far to scan while trying to match.  RANGE = 0 means try
  2831.    only at STARTPOS; in general, the last start tried is STARTPOS +
  2832.    RANGE.
  2833.    
  2834.    In REGS, return the indices of the virtual concatenation of STRING1
  2835.    and STRING2 that matched the entire BUFP->buffer and its contained
  2836.    subexpressions.
  2837.    
  2838.    Do not consider matching one past the index STOP in the virtual
  2839.    concatenation of STRING1 and STRING2.
  2840.  
  2841.    We return either the position in the strings at which the match was
  2842.    found, -1 if no match, or -2 if error (such as failure
  2843.    stack overflow).  */
  2844.  
  2845. int
  2846. re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
  2847.      struct re_pattern_buffer *bufp;
  2848.      const char *string1, *string2;
  2849.      int size1, size2;
  2850.      int startpos;
  2851.      int range;
  2852.      struct re_registers *regs;
  2853.      int stop;
  2854. {
  2855.   int val;
  2856.   register char *fastmap = bufp->fastmap;
  2857.   register char *translate = bufp->translate;
  2858.   int total_size = size1 + size2;
  2859.   int endpos = startpos + range;
  2860.  
  2861.   /* Check for out-of-range STARTPOS.  */
  2862.   if (startpos < 0 || startpos > total_size)
  2863.     return -1;
  2864.     
  2865.   /* Fix up RANGE if it might eventually take us outside
  2866.      the virtual concatenation of STRING1 and STRING2.  */
  2867.   if (endpos < -1)
  2868.     range = -1 - startpos;
  2869.   else if (endpos > total_size)
  2870.     range = total_size - startpos;
  2871.  
  2872.   /* If the search isn't to be a backwards one, don't waste time in a
  2873.      search for a pattern that must be anchored.  */
  2874.   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
  2875.     {
  2876.       if (startpos > 0)
  2877.     return -1;
  2878.       else
  2879.     range = 1;
  2880.     }
  2881.  
  2882.   /* Update the fastmap now if not correct already.  */
  2883.   if (fastmap && !bufp->fastmap_accurate)
  2884.     if (re_compile_fastmap (bufp) == -2)
  2885.       return -2;
  2886.   
  2887.   /* Loop through the string, looking for a place to start matching.  */
  2888.   for (;;)
  2889.     { 
  2890.       /* If a fastmap is supplied, skip quickly over characters that
  2891.          cannot be the start of a match.  If the pattern can match the
  2892.          null string, however, we don't need to skip characters; we want
  2893.          the first null string.  */
  2894.       if (fastmap && startpos < total_size && !bufp->can_be_null)
  2895.     {
  2896.       if (range > 0)    /* Searching forwards.  */
  2897.         {
  2898.           register const char *d;
  2899.           register int lim = 0;
  2900.           int irange = range;
  2901.  
  2902.               if (startpos < size1 && startpos + range >= size1)
  2903.                 lim = range - (size1 - startpos);
  2904.  
  2905.           d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
  2906.    
  2907.               /* Written out as an if-else to avoid testing `translate'
  2908.                  inside the loop.  */
  2909.           if (translate)
  2910.                 while (range > lim
  2911.                        && !fastmap[(unsigned char) translate[*d++]])
  2912.                   range--;
  2913.           else
  2914.                 while (range > lim && !fastmap[(unsigned char) *d++])
  2915.                   range--;
  2916.  
  2917.           startpos += irange - range;
  2918.         }
  2919.       else                /* Searching backwards.  */
  2920.         {
  2921.           register char c = (size1 == 0 || startpos >= size1
  2922.                                  ? string2[startpos - size1] 
  2923.                                  : string1[startpos]);
  2924.  
  2925.           if (!fastmap[(unsigned char) TRANSLATE (c)])
  2926.         goto advance;
  2927.         }
  2928.     }
  2929.  
  2930.       /* If can't match the null string, and that's all we have left, fail.  */
  2931.       if (range >= 0 && startpos == total_size && fastmap
  2932.           && !bufp->can_be_null)
  2933.     return -1;
  2934.  
  2935.       val = re_match_2 (bufp, string1, size1, string2, size2,
  2936.                     startpos, regs, stop);
  2937.       if (val >= 0)
  2938.     return startpos;
  2939.         
  2940.       if (val == -2)
  2941.     return -2;
  2942.  
  2943.     advance:
  2944.       if (!range) 
  2945.         break;
  2946.       else if (range > 0) 
  2947.         {
  2948.           range--; 
  2949.           startpos++;
  2950.         }
  2951.       else
  2952.         {
  2953.           range++; 
  2954.           startpos--;
  2955.         }
  2956.     }
  2957.   return -1;
  2958. } /* re_search_2 */
  2959.  
  2960. /* Declarations and macros for re_match_2.  */
  2961.  
  2962. static int bcmp_translate ();
  2963. static boolean alt_match_null_string_p (),
  2964.                common_op_match_null_string_p (),
  2965.                group_match_null_string_p ();
  2966.  
  2967. /* Structure for per-register (a.k.a. per-group) information.
  2968.    This must not be longer than one word, because we push this value
  2969.    onto the failure stack.  Other register information, such as the
  2970.    starting and ending positions (which are addresses), and the list of
  2971.    inner groups (which is a bits list) are maintained in separate
  2972.    variables.  
  2973.    
  2974.    We are making a (strictly speaking) nonportable assumption here: that
  2975.    the compiler will pack our bit fields into something that fits into
  2976.    the type of `word', i.e., is something that fits into one item on the
  2977.    failure stack.  */
  2978. typedef union
  2979. {
  2980.   fail_stack_elt_t word;
  2981.   struct
  2982.   {
  2983.       /* This field is one if this group can match the empty string,
  2984.          zero if not.  If not yet determined,  `MATCH_NULL_UNSET_VALUE'.  */
  2985. #define MATCH_NULL_UNSET_VALUE 3
  2986.     unsigned match_null_string_p : 2;
  2987.     unsigned is_active : 1;
  2988.     unsigned matched_something : 1;
  2989.     unsigned ever_matched_something : 1;
  2990.   } bits;
  2991. } register_info_type;
  2992.  
  2993. #define REG_MATCH_NULL_STRING_P(R)  ((R).bits.match_null_string_p)
  2994. #define IS_ACTIVE(R)  ((R).bits.is_active)
  2995. #define MATCHED_SOMETHING(R)  ((R).bits.matched_something)
  2996. #define EVER_MATCHED_SOMETHING(R)  ((R).bits.ever_matched_something)
  2997.  
  2998.  
  2999. /* Call this when have matched a real character; it sets `matched' flags
  3000.    for the subexpressions which we are currently inside.  Also records
  3001.    that those subexprs have matched.  */
  3002. #define SET_REGS_MATCHED()                        \
  3003.   do                                    \
  3004.     {                                    \
  3005.       unsigned r;                            \
  3006.       for (r = lowest_active_reg; r <= highest_active_reg; r++)        \
  3007.         {                                \
  3008.           MATCHED_SOMETHING (reg_info[r])                \
  3009.             = EVER_MATCHED_SOMETHING (reg_info[r])            \
  3010.             = 1;                            \
  3011.         }                                \
  3012.     }                                    \
  3013.   while (0)
  3014.  
  3015.  
  3016. /* This converts PTR, a pointer into one of the search strings `string1'
  3017.    and `string2' into an offset from the beginning of that string.  */
  3018. #define POINTER_TO_OFFSET(ptr)                        \
  3019.   (FIRST_STRING_P (ptr) ? (ptr) - string1 : (ptr) - string2 + size1)
  3020.  
  3021. /* Registers are set to a sentinel when they haven't yet matched.  */
  3022. #define REG_UNSET_VALUE ((char *) -1)
  3023. #define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
  3024.  
  3025.  
  3026. /* Macros for dealing with the split strings in re_match_2.  */
  3027.  
  3028. #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
  3029.  
  3030. /* Call before fetching a character with *d.  This switches over to
  3031.    string2 if necessary.  */
  3032. #define PREFETCH()                            \
  3033.   while (d == dend)                                \
  3034.     {                                    \
  3035.       /* End of string2 => fail.  */                    \
  3036.       if (dend == end_match_2)                         \
  3037.         goto fail;                            \
  3038.       /* End of string1 => advance to string2.  */             \
  3039.       d = string2;                                \
  3040.       dend = end_match_2;                        \
  3041.     }
  3042.  
  3043.  
  3044. /* Test if at very beginning or at very end of the virtual concatenation
  3045.    of `string1' and `string2'.  If only one string, it's `string2'.  */
  3046. #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
  3047. #define AT_STRINGS_END(d) ((d) == end2)    
  3048.  
  3049.  
  3050. /* Test if D points to a character which is word-constituent.  We have
  3051.    two special cases to check for: if past the end of string1, look at
  3052.    the first character in string2; and if before the beginning of
  3053.    string2, look at the last character in string1.  */
  3054. #define WORDCHAR_P(d)                            \
  3055.   (SYNTAX ((d) == end1 ? *string2                    \
  3056.            : (d) == string2 - 1 ? *(end1 - 1) : *(d))            \
  3057.    == Sword)
  3058.  
  3059. /* Test if the character before D and the one at D differ with respect
  3060.    to being word-constituent.  */
  3061. #define AT_WORD_BOUNDARY(d)                        \
  3062.   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)                \
  3063.    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
  3064.  
  3065.  
  3066. /* Free everything we malloc.  */
  3067. #ifdef REGEX_MALLOC
  3068. #define FREE_VAR(var) if (var) free (var); var = NULL
  3069. #define FREE_VARIABLES()                        \
  3070.   do {                                    \
  3071.     FREE_VAR (fail_stack.stack);                    \
  3072.     FREE_VAR (regstart);                        \
  3073.     FREE_VAR (regend);                            \
  3074.     FREE_VAR (old_regstart);                        \
  3075.     FREE_VAR (old_regend);                        \
  3076.     FREE_VAR (best_regstart);                        \
  3077.     FREE_VAR (best_regend);                        \
  3078.     FREE_VAR (reg_info);                        \
  3079.     FREE_VAR (reg_dummy);                        \
  3080.     FREE_VAR (reg_info_dummy);                        \
  3081.   } while (0)
  3082. #else /* not REGEX_MALLOC */
  3083. /* Some MIPS systems (at least) want this to free alloca'd storage.  */
  3084. #define FREE_VARIABLES() alloca (0)
  3085. #endif /* not REGEX_MALLOC */
  3086.  
  3087.  
  3088. /* These values must meet several constraints.  They must not be valid
  3089.    register values; since we have a limit of 255 registers (because
  3090.    we use only one byte in the pattern for the register number), we can
  3091.    use numbers larger than 255.  They must differ by 1, because of
  3092.    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
  3093.    be larger than the value for the highest register, so we do not try
  3094.    to actually save any registers when none are active.  */
  3095. #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
  3096. #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
  3097.  
  3098. /* Matching routines.  */
  3099.  
  3100. #ifndef emacs   /* Emacs never uses this.  */
  3101. /* re_match is like re_match_2 except it takes only a single string.  */
  3102.  
  3103. int
  3104. re_match (bufp, string, size, pos, regs)
  3105.      struct re_pattern_buffer *bufp;
  3106.      const char *string;
  3107.      int size, pos;
  3108.      struct re_registers *regs;
  3109.  {
  3110.   return re_match_2 (bufp, NULL, 0, string, size, pos, regs, size); 
  3111. }
  3112. #endif /* not emacs */
  3113.  
  3114.  
  3115. /* re_match_2 matches the compiled pattern in BUFP against the
  3116.    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
  3117.    and SIZE2, respectively).  We start matching at POS, and stop
  3118.    matching at STOP.
  3119.    
  3120.    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
  3121.    store offsets for the substring each group matched in REGS.  See the
  3122.    documentation for exactly how many groups we fill.
  3123.  
  3124.    We return -1 if no match, -2 if an internal error (such as the
  3125.    failure stack overflowing).  Otherwise, we return the length of the
  3126.    matched substring.  */
  3127.  
  3128. int
  3129. re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
  3130.      struct re_pattern_buffer *bufp;
  3131.      const char *string1, *string2;
  3132.      int size1, size2;
  3133.      int pos;
  3134.      struct re_registers *regs;
  3135.      int stop;
  3136. {
  3137.   /* General temporaries.  */
  3138.   int mcnt;
  3139.   unsigned char *p1;
  3140.  
  3141.   /* Just past the end of the corresponding string.  */
  3142.   const char *end1, *end2;
  3143.  
  3144.   /* Pointers into string1 and string2, just past the last characters in
  3145.      each to consider matching.  */
  3146.   const char *end_match_1, *end_match_2;
  3147.  
  3148.   /* Where we are in the data, and the end of the current string.  */
  3149.   const char *d, *dend;
  3150.   
  3151.   /* Where we are in the pattern, and the end of the pattern.  */
  3152.   unsigned char *p = bufp->buffer;
  3153.   register unsigned char *pend = p + bufp->used;
  3154.  
  3155.   /* We use this to map every character in the string.  */
  3156.   char *translate = bufp->translate;
  3157.  
  3158.   /* Failure point stack.  Each place that can handle a failure further
  3159.      down the line pushes a failure point on this stack.  It consists of
  3160.      restart, regend, and reg_info for all registers corresponding to
  3161.      the subexpressions we're currently inside, plus the number of such
  3162.      registers, and, finally, two char *'s.  The first char * is where
  3163.      to resume scanning the pattern; the second one is where to resume
  3164.      scanning the strings.  If the latter is zero, the failure point is
  3165.      a ``dummy''; if a failure happens and the failure point is a dummy,
  3166.      it gets discarded and the next next one is tried.  */
  3167.   fail_stack_type fail_stack;
  3168. #ifdef DEBUG
  3169.   static unsigned failure_id = 0;
  3170.   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
  3171. #endif
  3172.  
  3173.   /* We fill all the registers internally, independent of what we
  3174.      return, for use in backreferences.  The number here includes
  3175.      an element for register zero.  */
  3176.   unsigned num_regs = bufp->re_nsub + 1;
  3177.   
  3178.   /* The currently active registers.  */
  3179.   unsigned lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3180.   unsigned highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3181.  
  3182.   /* Information on the contents of registers. These are pointers into
  3183.      the input strings; they record just what was matched (on this
  3184.      attempt) by a subexpression part of the pattern, that is, the
  3185.      regnum-th regstart pointer points to where in the pattern we began
  3186.      matching and the regnum-th regend points to right after where we
  3187.      stopped matching the regnum-th subexpression.  (The zeroth register
  3188.      keeps track of what the whole pattern matches.)  */
  3189.   const char **regstart, **regend;
  3190.  
  3191.   /* If a group that's operated upon by a repetition operator fails to
  3192.      match anything, then the register for its start will need to be
  3193.      restored because it will have been set to wherever in the string we
  3194.      are when we last see its open-group operator.  Similarly for a
  3195.      register's end.  */
  3196.   const char **old_regstart, **old_regend;
  3197.  
  3198.   /* The is_active field of reg_info helps us keep track of which (possibly
  3199.      nested) subexpressions we are currently in. The matched_something
  3200.      field of reg_info[reg_num] helps us tell whether or not we have
  3201.      matched any of the pattern so far this time through the reg_num-th
  3202.      subexpression.  These two fields get reset each time through any
  3203.      loop their register is in.  */
  3204.   register_info_type *reg_info; 
  3205.  
  3206.   /* The following record the register info as found in the above
  3207.      variables when we find a match better than any we've seen before. 
  3208.      This happens as we backtrack through the failure points, which in
  3209.      turn happens only if we have not yet matched the entire string. */
  3210.   unsigned best_regs_set = false;
  3211.   const char **best_regstart, **best_regend;
  3212.   
  3213.   /* Logically, this is `best_regend[0]'.  But we don't want to have to
  3214.      allocate space for that if we're not allocating space for anything
  3215.      else (see below).  Also, we never need info about register 0 for
  3216.      any of the other register vectors, and it seems rather a kludge to
  3217.      treat `best_regend' differently than the rest.  So we keep track of
  3218.      the end of the best match so far in a separate variable.  We
  3219.      initialize this to NULL so that when we backtrack the first time
  3220.      and need to test it, it's not garbage.  */
  3221.   const char *match_end = NULL;
  3222.  
  3223.   /* Used when we pop values we don't care about.  */
  3224.   const char **reg_dummy;
  3225.   register_info_type *reg_info_dummy;
  3226.  
  3227. #ifdef DEBUG
  3228.   /* Counts the total number of registers pushed.  */
  3229.   unsigned num_regs_pushed = 0;     
  3230. #endif
  3231.  
  3232.   DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
  3233.   
  3234.   INIT_FAIL_STACK ();
  3235.   
  3236.   /* Do not bother to initialize all the register variables if there are
  3237.      no groups in the pattern, as it takes a fair amount of time.  If
  3238.      there are groups, we include space for register 0 (the whole
  3239.      pattern), even though we never use it, since it simplifies the
  3240.      array indexing.  We should fix this.  */
  3241.   if (bufp->re_nsub)
  3242.     {
  3243.       regstart = REGEX_TALLOC (num_regs, const char *);
  3244.       regend = REGEX_TALLOC (num_regs, const char *);
  3245.       old_regstart = REGEX_TALLOC (num_regs, const char *);
  3246.       old_regend = REGEX_TALLOC (num_regs, const char *);
  3247.       best_regstart = REGEX_TALLOC (num_regs, const char *);
  3248.       best_regend = REGEX_TALLOC (num_regs, const char *);
  3249.       reg_info = REGEX_TALLOC (num_regs, register_info_type);
  3250.       reg_dummy = REGEX_TALLOC (num_regs, const char *);
  3251.       reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
  3252.  
  3253.       if (!(regstart && regend && old_regstart && old_regend && reg_info 
  3254.             && best_regstart && best_regend && reg_dummy && reg_info_dummy)) 
  3255.         {
  3256.           FREE_VARIABLES ();
  3257.           return -2;
  3258.         }
  3259.     }
  3260. #ifdef REGEX_MALLOC
  3261.   else
  3262.     {
  3263.       /* We must initialize all our variables to NULL, so that
  3264.          `FREE_VARIABLES' doesn't try to free them.  */
  3265.       regstart = regend = old_regstart = old_regend = best_regstart
  3266.         = best_regend = reg_dummy = NULL;
  3267.       reg_info = reg_info_dummy = (register_info_type *) NULL;
  3268.     }
  3269. #endif /* REGEX_MALLOC */
  3270.  
  3271.   /* The starting position is bogus.  */
  3272.   if (pos < 0 || pos > size1 + size2)
  3273.     {
  3274.       FREE_VARIABLES ();
  3275.       return -1;
  3276.     }
  3277.     
  3278.   /* Initialize subexpression text positions to -1 to mark ones that no
  3279.      start_memory/stop_memory has been seen for. Also initialize the
  3280.      register information struct.  */
  3281.   for (mcnt = 1; mcnt < num_regs; mcnt++)
  3282.     {
  3283.       regstart[mcnt] = regend[mcnt] 
  3284.         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
  3285.         
  3286.       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
  3287.       IS_ACTIVE (reg_info[mcnt]) = 0;
  3288.       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  3289.       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  3290.     }
  3291.   
  3292.   /* We move `string1' into `string2' if the latter's empty -- but not if
  3293.      `string1' is null.  */
  3294.   if (size2 == 0 && string1 != NULL)
  3295.     {
  3296.       string2 = string1;
  3297.       size2 = size1;
  3298.       string1 = 0;
  3299.       size1 = 0;
  3300.     }
  3301.   end1 = string1 + size1;
  3302.   end2 = string2 + size2;
  3303.  
  3304.   /* Compute where to stop matching, within the two strings.  */
  3305.   if (stop <= size1)
  3306.     {
  3307.       end_match_1 = string1 + stop;
  3308.       end_match_2 = string2;
  3309.     }
  3310.   else
  3311.     {
  3312.       end_match_1 = end1;
  3313.       end_match_2 = string2 + stop - size1;
  3314.     }
  3315.  
  3316.   /* `p' scans through the pattern as `d' scans through the data. 
  3317.      `dend' is the end of the input string that `d' points within.  `d'
  3318.      is advanced into the following input string whenever necessary, but
  3319.      this happens before fetching; therefore, at the beginning of the
  3320.      loop, `d' can be pointing at the end of a string, but it cannot
  3321.      equal `string2'.  */
  3322.   if (size1 > 0 && pos <= size1)
  3323.     {
  3324.       d = string1 + pos;
  3325.       dend = end_match_1;
  3326.     }
  3327.   else
  3328.     {
  3329.       d = string2 + pos - size1;
  3330.       dend = end_match_2;
  3331.     }
  3332.  
  3333.   DEBUG_PRINT1 ("The compiled pattern is: ");
  3334.   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
  3335.   DEBUG_PRINT1 ("The string to match is: `");
  3336.   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
  3337.   DEBUG_PRINT1 ("'\n");
  3338.   
  3339.   /* This loops over pattern commands.  It exits by returning from the
  3340.      function if the match is complete, or it drops through if the match
  3341.      fails at this starting point in the input data.  */
  3342.   for (;;)
  3343.     {
  3344.       DEBUG_PRINT2 ("\n0x%x: ", p);
  3345.  
  3346.       if (p == pend)
  3347.     { /* End of pattern means we might have succeeded.  */
  3348.           DEBUG_PRINT1 ("end of pattern ... ");
  3349.           
  3350.       /* If we haven't matched the entire string, and we want the
  3351.              longest match, try backtracking.  */
  3352.           if (d != end_match_2)
  3353.         {
  3354.               DEBUG_PRINT1 ("backtracking.\n");
  3355.               
  3356.               if (!FAIL_STACK_EMPTY ())
  3357.                 { /* More failure points to try.  */
  3358.                   boolean same_str_p = (FIRST_STRING_P (match_end) 
  3359.                                 == MATCHING_IN_FIRST_STRING);
  3360.  
  3361.                   /* If exceeds best match so far, save it.  */
  3362.                   if (!best_regs_set
  3363.                       || (same_str_p && d > match_end)
  3364.                       || (!same_str_p && !MATCHING_IN_FIRST_STRING))
  3365.                     {
  3366.                       best_regs_set = true;
  3367.                       match_end = d;
  3368.                       
  3369.                       DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
  3370.                       
  3371.                       for (mcnt = 1; mcnt < num_regs; mcnt++)
  3372.                         {
  3373.                           best_regstart[mcnt] = regstart[mcnt];
  3374.                           best_regend[mcnt] = regend[mcnt];
  3375.                         }
  3376.                     }
  3377.                   goto fail;           
  3378.                 }
  3379.  
  3380.               /* If no failure points, don't restore garbage.  */
  3381.               else if (best_regs_set)   
  3382.                 {
  3383.               restore_best_regs:
  3384.                   /* Restore best match.  It may happen that `dend ==
  3385.                      end_match_1' while the restored d is in string2.
  3386.                      For example, the pattern `x.*y.*z' against the
  3387.                      strings `x-' and `y-z-', if the two strings are
  3388.                      not consecutive in memory.  */
  3389.                   DEBUG_PRINT1 ("Restoring best registers.\n");
  3390.                   
  3391.                   d = match_end;
  3392.                   dend = ((d >= string1 && d <= end1)
  3393.                    ? end_match_1 : end_match_2);
  3394.  
  3395.           for (mcnt = 1; mcnt < num_regs; mcnt++)
  3396.             {
  3397.               regstart[mcnt] = best_regstart[mcnt];
  3398.               regend[mcnt] = best_regend[mcnt];
  3399.             }
  3400.                 }
  3401.             } /* d != end_match_2 */
  3402.  
  3403.           DEBUG_PRINT1 ("Accepting match.\n");
  3404.  
  3405.           /* If caller wants register contents data back, do it.  */
  3406.           if (regs && !bufp->no_sub)
  3407.         {
  3408.               /* Have the register data arrays been allocated?  */
  3409.               if (bufp->regs_allocated == REGS_UNALLOCATED)
  3410.                 { /* No.  So allocate them with malloc.  We need one
  3411.                      extra element beyond `num_regs' for the `-1' marker
  3412.                      GNU code uses.  */
  3413.                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
  3414.                   regs->start = TALLOC (regs->num_regs, regoff_t);
  3415.                   regs->end = TALLOC (regs->num_regs, regoff_t);
  3416.                   if (regs->start == NULL || regs->end == NULL)
  3417.                     return -2;
  3418.                   bufp->regs_allocated = REGS_REALLOCATE;
  3419.                 }
  3420.               else if (bufp->regs_allocated == REGS_REALLOCATE)
  3421.                 { /* Yes.  If we need more elements than were already
  3422.                      allocated, reallocate them.  If we need fewer, just
  3423.                      leave it alone.  */
  3424.                   if (regs->num_regs < num_regs + 1)
  3425.                     {
  3426.                       regs->num_regs = num_regs + 1;
  3427.                       RETALLOC (regs->start, regs->num_regs, regoff_t);
  3428.                       RETALLOC (regs->end, regs->num_regs, regoff_t);
  3429.                       if (regs->start == NULL || regs->end == NULL)
  3430.                         return -2;
  3431.                     }
  3432.                 }
  3433.               else
  3434.                 assert (bufp->regs_allocated == REGS_FIXED);
  3435.  
  3436.               /* Convert the pointer data in `regstart' and `regend' to
  3437.                  indices.  Register zero has to be set differently,
  3438.                  since we haven't kept track of any info for it.  */
  3439.               if (regs->num_regs > 0)
  3440.                 {
  3441.                   regs->start[0] = pos;
  3442.                   regs->end[0] = (MATCHING_IN_FIRST_STRING ? d - string1
  3443.                       : d - string2 + size1);
  3444.                 }
  3445.               
  3446.               /* Go through the first `min (num_regs, regs->num_regs)'
  3447.                  registers, since that is all we initialized.  */
  3448.           for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); mcnt++)
  3449.         {
  3450.                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
  3451.                     regs->start[mcnt] = regs->end[mcnt] = -1;
  3452.                   else
  3453.                     {
  3454.               regs->start[mcnt] = POINTER_TO_OFFSET (regstart[mcnt]);
  3455.                       regs->end[mcnt] = POINTER_TO_OFFSET (regend[mcnt]);
  3456.                     }
  3457.         }
  3458.               
  3459.               /* If the regs structure we return has more elements than
  3460.                  were in the pattern, set the extra elements to -1.  If
  3461.                  we (re)allocated the registers, this is the case,
  3462.                  because we always allocate enough to have at least one
  3463.                  -1 at the end.  */
  3464.               for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++)
  3465.                 regs->start[mcnt] = regs->end[mcnt] = -1;
  3466.         } /* regs && !bufp->no_sub */
  3467.  
  3468.           FREE_VARIABLES ();
  3469.           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
  3470.                         nfailure_points_pushed, nfailure_points_popped,
  3471.                         nfailure_points_pushed - nfailure_points_popped);
  3472.           DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
  3473.  
  3474.           mcnt = d - pos - (MATCHING_IN_FIRST_STRING 
  3475.                 ? string1 
  3476.                 : string2 - size1);
  3477.  
  3478.           DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
  3479.  
  3480.           return mcnt;
  3481.         }
  3482.  
  3483.       /* Otherwise match next pattern command.  */
  3484. #ifdef SWITCH_ENUM_BUG
  3485.       switch ((int) ((re_opcode_t) *p++))
  3486. #else
  3487.       switch ((re_opcode_t) *p++)
  3488. #endif
  3489.     {
  3490.         /* Ignore these.  Used to ignore the n of succeed_n's which
  3491.            currently have n == 0.  */
  3492.         case no_op:
  3493.           DEBUG_PRINT1 ("EXECUTING no_op.\n");
  3494.           break;
  3495.  
  3496.  
  3497.         /* Match the next n pattern characters exactly.  The following
  3498.            byte in the pattern defines n, and the n bytes after that
  3499.            are the characters to match.  */
  3500.     case exactn:
  3501.       mcnt = *p++;
  3502.           DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
  3503.  
  3504.           /* This is written out as an if-else so we don't waste time
  3505.              testing `translate' inside the loop.  */
  3506.           if (translate)
  3507.         {
  3508.           do
  3509.         {
  3510.           PREFETCH ();
  3511.           if (translate[(unsigned char) *d++] != (char) *p++)
  3512.                     goto fail;
  3513.         }
  3514.           while (--mcnt);
  3515.         }
  3516.       else
  3517.         {
  3518.           do
  3519.         {
  3520.           PREFETCH ();
  3521.           if (*d++ != (char) *p++) goto fail;
  3522.         }
  3523.           while (--mcnt);
  3524.         }
  3525.       SET_REGS_MATCHED ();
  3526.           break;
  3527.  
  3528.  
  3529.         /* Match any character except possibly a newline or a null.  */
  3530.     case anychar:
  3531.           DEBUG_PRINT1 ("EXECUTING anychar.\n");
  3532.  
  3533.           PREFETCH ();
  3534.  
  3535.           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
  3536.               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
  3537.         goto fail;
  3538.  
  3539.           SET_REGS_MATCHED ();
  3540.           DEBUG_PRINT2 ("  Matched `%d'.\n", *d);
  3541.           d++;
  3542.       break;
  3543.  
  3544.  
  3545.     case charset:
  3546.     case charset_not:
  3547.       {
  3548.         register unsigned char c;
  3549.         boolean not = (re_opcode_t) *(p - 1) == charset_not;
  3550.  
  3551.             DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
  3552.  
  3553.         PREFETCH ();
  3554.         c = TRANSLATE (*d); /* The character to match.  */
  3555.  
  3556.             /* Cast to `unsigned' instead of `unsigned char' in case the
  3557.                bit list is a full 32 bytes long.  */
  3558.         if (c < (unsigned) (*p * BYTEWIDTH)
  3559.         && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  3560.           not = !not;
  3561.  
  3562.         p += 1 + *p;
  3563.  
  3564.         if (!not) goto fail;
  3565.             
  3566.         SET_REGS_MATCHED ();
  3567.             d++;
  3568.         break;
  3569.       }
  3570.  
  3571.  
  3572.         /* The beginning of a group is represented by start_memory.
  3573.            The arguments are the register number in the next byte, and the
  3574.            number of groups inner to this one in the next.  The text
  3575.            matched within the group is recorded (in the internal
  3576.            registers data structure) under the register number.  */
  3577.         case start_memory:
  3578.       DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):\n", *p, p[1]);
  3579.  
  3580.           /* Find out if this group can match the empty string.  */
  3581.       p1 = p;        /* To send to group_match_null_string_p.  */
  3582.           
  3583.           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
  3584.             REG_MATCH_NULL_STRING_P (reg_info[*p]) 
  3585.               = group_match_null_string_p (&p1, pend, reg_info);
  3586.  
  3587.           /* Save the position in the string where we were the last time
  3588.              we were at this open-group operator in case the group is
  3589.              operated upon by a repetition operator, e.g., with `(a*)*b'
  3590.              against `ab'; then we want to ignore where we are now in
  3591.              the string in case this attempt to match fails.  */
  3592.           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  3593.                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
  3594.                              : regstart[*p];
  3595.       DEBUG_PRINT2 ("  old_regstart: %d\n", 
  3596.              POINTER_TO_OFFSET (old_regstart[*p]));
  3597.  
  3598.           regstart[*p] = d;
  3599.       DEBUG_PRINT2 ("  regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
  3600.  
  3601.           IS_ACTIVE (reg_info[*p]) = 1;
  3602.           MATCHED_SOMETHING (reg_info[*p]) = 0;
  3603.           
  3604.           /* This is the new highest active register.  */
  3605.           highest_active_reg = *p;
  3606.           
  3607.           /* If nothing was active before, this is the new lowest active
  3608.              register.  */
  3609.           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  3610.             lowest_active_reg = *p;
  3611.  
  3612.           /* Move past the register number and inner group count.  */
  3613.           p += 2;
  3614.           break;
  3615.  
  3616.  
  3617.         /* The stop_memory opcode represents the end of a group.  Its
  3618.            arguments are the same as start_memory's: the register
  3619.            number, and the number of inner groups.  */
  3620.     case stop_memory:
  3621.       DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):\n", *p, p[1]);
  3622.              
  3623.           /* We need to save the string position the last time we were at
  3624.              this close-group operator in case the group is operated
  3625.              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
  3626.              against `aba'; then we want to ignore where we are now in
  3627.              the string in case this attempt to match fails.  */
  3628.           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  3629.                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
  3630.                : regend[*p];
  3631.       DEBUG_PRINT2 ("      old_regend: %d\n", 
  3632.              POINTER_TO_OFFSET (old_regend[*p]));
  3633.  
  3634.           regend[*p] = d;
  3635.       DEBUG_PRINT2 ("      regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
  3636.  
  3637.           /* This register isn't active anymore.  */
  3638.           IS_ACTIVE (reg_info[*p]) = 0;
  3639.           
  3640.           /* If this was the only register active, nothing is active
  3641.              anymore.  */
  3642.           if (lowest_active_reg == highest_active_reg)
  3643.             {
  3644.               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3645.               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3646.             }
  3647.           else
  3648.             { /* We must scan for the new highest active register, since
  3649.                  it isn't necessarily one less than now: consider
  3650.                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
  3651.                  new highest active register is 1.  */
  3652.               unsigned char r = *p - 1;
  3653.               while (r > 0 && !IS_ACTIVE (reg_info[r]))
  3654.                 r--;
  3655.               
  3656.               /* If we end up at register zero, that means that we saved
  3657.                  the registers as the result of an `on_failure_jump', not
  3658.                  a `start_memory', and we jumped to past the innermost
  3659.                  `stop_memory'.  For example, in ((.)*) we save
  3660.                  registers 1 and 2 as a result of the *, but when we pop
  3661.                  back to the second ), we are at the stop_memory 1.
  3662.                  Thus, nothing is active.  */
  3663.           if (r == 0)
  3664.                 {
  3665.                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3666.                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3667.                 }
  3668.               else
  3669.                 highest_active_reg = r;
  3670.             }
  3671.           
  3672.           /* If just failed to match something this time around with a
  3673.              group that's operated on by a repetition operator, try to
  3674.              force exit from the ``loop'', and restore the register
  3675.              information for this group that we had before trying this
  3676.              last match.  */
  3677.           if ((!MATCHED_SOMETHING (reg_info[*p])
  3678.                || (re_opcode_t) p[-3] == start_memory)
  3679.           && (p + 2) < pend)              
  3680.             {
  3681.               boolean is_a_jump_n = false;
  3682.               
  3683.               p1 = p + 2;
  3684.               mcnt = 0;
  3685.               switch ((re_opcode_t) *p1++)
  3686.                 {
  3687.                   case jump_n:
  3688.             is_a_jump_n = true;
  3689.                   case pop_failure_jump:
  3690.           case maybe_pop_jump:
  3691.           case jump:
  3692.           case dummy_failure_jump:
  3693.                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  3694.             if (is_a_jump_n)
  3695.               p1 += 2;
  3696.                     break;
  3697.                   
  3698.                   default:
  3699.                     /* do nothing */ ;
  3700.                 }
  3701.           p1 += mcnt;
  3702.         
  3703.               /* If the next operation is a jump backwards in the pattern
  3704.              to an on_failure_jump right before the start_memory
  3705.                  corresponding to this stop_memory, exit from the loop
  3706.                  by forcing a failure after pushing on the stack the
  3707.                  on_failure_jump's jump in the pattern, and d.  */
  3708.               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
  3709.                   && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
  3710.         {
  3711.                   /* If this group ever matched anything, then restore
  3712.                      what its registers were before trying this last
  3713.                      failed match, e.g., with `(a*)*b' against `ab' for
  3714.                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
  3715.                      against `aba' for regend[3].
  3716.                      
  3717.                      Also restore the registers for inner groups for,
  3718.                      e.g., `((a*)(b*))*' against `aba' (register 3 would
  3719.                      otherwise get trashed).  */
  3720.                      
  3721.                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
  3722.             {
  3723.               unsigned r; 
  3724.         
  3725.                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
  3726.                       
  3727.               /* Restore this and inner groups' (if any) registers.  */
  3728.                       for (r = *p; r < *p + *(p + 1); r++)
  3729.                         {
  3730.                           regstart[r] = old_regstart[r];
  3731.  
  3732.                           /* xx why this test?  */
  3733.                           if ((int) old_regend[r] >= (int) regstart[r])
  3734.                             regend[r] = old_regend[r];
  3735.                         }     
  3736.                     }
  3737.           p1++;
  3738.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  3739.                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
  3740.  
  3741.                   goto fail;
  3742.                 }
  3743.             }
  3744.           
  3745.           /* Move past the register number and the inner group count.  */
  3746.           p += 2;
  3747.           break;
  3748.  
  3749.  
  3750.     /* \<digit> has been turned into a `duplicate' command which is
  3751.            followed by the numeric value of <digit> as the register number.  */
  3752.         case duplicate:
  3753.       {
  3754.         register const char *d2, *dend2;
  3755.         int regno = *p++;   /* Get which register to match against.  */
  3756.         DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
  3757.  
  3758.         /* Can't back reference a group which we've never matched.  */
  3759.             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
  3760.               goto fail;
  3761.               
  3762.             /* Where in input to try to start matching.  */
  3763.             d2 = regstart[regno];
  3764.             
  3765.             /* Where to stop matching; if both the place to start and
  3766.                the place to stop matching are in the same string, then
  3767.                set to the place to stop, otherwise, for now have to use
  3768.                the end of the first string.  */
  3769.  
  3770.             dend2 = ((FIRST_STRING_P (regstart[regno]) 
  3771.               == FIRST_STRING_P (regend[regno]))
  3772.              ? regend[regno] : end_match_1);
  3773.         for (;;)
  3774.           {
  3775.         /* If necessary, advance to next segment in register
  3776.                    contents.  */
  3777.         while (d2 == dend2)
  3778.           {
  3779.             if (dend2 == end_match_2) break;
  3780.             if (dend2 == regend[regno]) break;
  3781.  
  3782.                     /* End of string1 => advance to string2. */
  3783.                     d2 = string2;
  3784.                     dend2 = regend[regno];
  3785.           }
  3786.         /* At end of register contents => success */
  3787.         if (d2 == dend2) break;
  3788.  
  3789.         /* If necessary, advance to next segment in data.  */
  3790.         PREFETCH ();
  3791.  
  3792.         /* How many characters left in this segment to match.  */
  3793.         mcnt = dend - d;
  3794.                 
  3795.         /* Want how many consecutive characters we can match in
  3796.                    one shot, so, if necessary, adjust the count.  */
  3797.                 if (mcnt > dend2 - d2)
  3798.           mcnt = dend2 - d2;
  3799.                   
  3800.         /* Compare that many; failure if mismatch, else move
  3801.                    past them.  */
  3802.         if (translate 
  3803.                     ? bcmp_translate (d, d2, mcnt, translate) 
  3804.                     : bcmp (d, d2, mcnt))
  3805.           goto fail;
  3806.         d += mcnt, d2 += mcnt;
  3807.           }
  3808.       }
  3809.       break;
  3810.  
  3811.  
  3812.         /* begline matches the empty string at the beginning of the string
  3813.            (unless `not_bol' is set in `bufp'), and, if
  3814.            `newline_anchor' is set, after newlines.  */
  3815.     case begline:
  3816.           DEBUG_PRINT1 ("EXECUTING begline.\n");
  3817.           
  3818.           if (AT_STRINGS_BEG (d))
  3819.             {
  3820.               if (!bufp->not_bol) break;
  3821.             }
  3822.           else if (d[-1] == '\n' && bufp->newline_anchor)
  3823.             {
  3824.               break;
  3825.             }
  3826.           /* In all other cases, we fail.  */
  3827.           goto fail;
  3828.  
  3829.  
  3830.         /* endline is the dual of begline.  */
  3831.     case endline:
  3832.           DEBUG_PRINT1 ("EXECUTING endline.\n");
  3833.  
  3834.           if (AT_STRINGS_END (d))
  3835.             {
  3836.               if (!bufp->not_eol) break;
  3837.             }
  3838.           
  3839.           /* We have to ``prefetch'' the next character.  */
  3840.           else if ((d == end1 ? *string2 : *d) == '\n'
  3841.                    && bufp->newline_anchor)
  3842.             {
  3843.               break;
  3844.             }
  3845.           goto fail;
  3846.  
  3847.  
  3848.     /* Match at the very beginning of the data.  */
  3849.         case begbuf:
  3850.           DEBUG_PRINT1 ("EXECUTING begbuf.\n");
  3851.           if (AT_STRINGS_BEG (d))
  3852.             break;
  3853.           goto fail;
  3854.  
  3855.  
  3856.     /* Match at the very end of the data.  */
  3857.         case endbuf:
  3858.           DEBUG_PRINT1 ("EXECUTING endbuf.\n");
  3859.       if (AT_STRINGS_END (d))
  3860.         break;
  3861.           goto fail;
  3862.  
  3863.  
  3864.         /* on_failure_keep_string_jump is used to optimize `.*\n'.  It
  3865.            pushes NULL as the value for the string on the stack.  Then
  3866.            `pop_failure_point' will keep the current value for the
  3867.            string, instead of restoring it.  To see why, consider
  3868.            matching `foo\nbar' against `.*\n'.  The .* matches the foo;
  3869.            then the . fails against the \n.  But the next thing we want
  3870.            to do is match the \n against the \n; if we restored the
  3871.            string value, we would be back at the foo.
  3872.            
  3873.            Because this is used only in specific cases, we don't need to
  3874.            check all the things that `on_failure_jump' does, to make
  3875.            sure the right things get saved on the stack.  Hence we don't
  3876.            share its code.  The only reason to push anything on the
  3877.            stack at all is that otherwise we would have to change
  3878.            `anychar's code to do something besides goto fail in this
  3879.            case; that seems worse than this.  */
  3880.         case on_failure_keep_string_jump:
  3881.           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
  3882.           
  3883.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  3884.           DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
  3885.  
  3886.           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
  3887.           break;
  3888.  
  3889.  
  3890.     /* Uses of on_failure_jump:
  3891.         
  3892.            Each alternative starts with an on_failure_jump that points
  3893.            to the beginning of the next alternative.  Each alternative
  3894.            except the last ends with a jump that in effect jumps past
  3895.            the rest of the alternatives.  (They really jump to the
  3896.            ending jump of the following alternative, because tensioning
  3897.            these jumps is a hassle.)
  3898.  
  3899.            Repeats start with an on_failure_jump that points past both
  3900.            the repetition text and either the following jump or
  3901.            pop_failure_jump back to this on_failure_jump.  */
  3902.     case on_failure_jump:
  3903.         on_failure:
  3904.           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
  3905.  
  3906.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  3907.           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
  3908.  
  3909.           /* If this on_failure_jump comes right before a group (i.e.,
  3910.              the original * applied to a group), save the information
  3911.              for that group and all inner ones, so that if we fail back
  3912.              to this point, the group's information will be correct.
  3913.              For example, in \(a*\)*\1, we need the preceding group,
  3914.              and in \(\(a*\)b*\)\2, we need the inner group.  */
  3915.  
  3916.           /* We can't use `p' to check ahead because we push
  3917.              a failure point to `p + mcnt' after we do this.  */
  3918.           p1 = p;
  3919.  
  3920.           /* We need to skip no_op's before we look for the
  3921.              start_memory in case this on_failure_jump is happening as
  3922.              the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
  3923.              against aba.  */
  3924.           while (p1 < pend && (re_opcode_t) *p1 == no_op)
  3925.             p1++;
  3926.  
  3927.           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
  3928.             {
  3929.               /* We have a new highest active register now.  This will
  3930.                  get reset at the start_memory we are about to get to,
  3931.                  but we will have saved all the registers relevant to
  3932.                  this repetition op, as described above.  */
  3933.               highest_active_reg = *(p1 + 1) + *(p1 + 2);
  3934.               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  3935.                 lowest_active_reg = *(p1 + 1);
  3936.             }
  3937.  
  3938.           DEBUG_PRINT1 (":\n");
  3939.           PUSH_FAILURE_POINT (p + mcnt, d, -2);
  3940.           break;
  3941.  
  3942.  
  3943.         /* A smart repeat ends with `maybe_pop_jump'.
  3944.        We change it to either `pop_failure_jump' or `jump'.  */
  3945.         case maybe_pop_jump:
  3946.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  3947.           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
  3948.           {
  3949.         register unsigned char *p2 = p;
  3950.  
  3951.             /* Compare the beginning of the repeat with what in the
  3952.                pattern follows its end. If we can establish that there
  3953.                is nothing that they would both match, i.e., that we
  3954.                would have to backtrack because of (as in, e.g., `a*a')
  3955.                then we can change to pop_failure_jump, because we'll
  3956.                never have to backtrack.
  3957.                
  3958.                This is not true in the case of alternatives: in
  3959.                `(a|ab)*' we do need to backtrack to the `ab' alternative
  3960.                (e.g., if the string was `ab').  But instead of trying to
  3961.                detect that here, the alternative has put on a dummy
  3962.                failure point which is what we will end up popping.  */
  3963.  
  3964.         /* Skip over open/close-group commands.  */
  3965.         while (p2 + 2 < pend
  3966.            && ((re_opcode_t) *p2 == stop_memory
  3967.                || (re_opcode_t) *p2 == start_memory))
  3968.           p2 += 3;            /* Skip over args, too.  */
  3969.  
  3970.             /* If we're at the end of the pattern, we can change.  */
  3971.             if (p2 == pend)
  3972.               { /* But if we're also at the end of the string, we might
  3973.                    as well skip changing anything.  For example, in `a+'
  3974.                    against `a', we'll have already matched the `a', and
  3975.                    I don't see the the point of changing the opcode,
  3976.                    popping the failure point, finding out it fails, and
  3977.                    then going into our endgame.  */
  3978.                 if (d == dend)
  3979.                   {
  3980.                     p = pend;
  3981.                     DEBUG_PRINT1 ("  End of pattern & string => done.\n");
  3982.                     continue;
  3983.                   }
  3984.                 
  3985.               p[-3] = (unsigned char) pop_failure_jump;
  3986.                 DEBUG_PRINT1 ("  End of pattern => pop_failure_jump.\n");
  3987.               }
  3988.  
  3989.             else if ((re_opcode_t) *p2 == exactn
  3990.              || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
  3991.           {
  3992.         register unsigned char c
  3993.                   = *p2 == (unsigned char) endline ? '\n' : p2[2];
  3994.         p1 = p + mcnt;
  3995.  
  3996.                 /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
  3997.                    to the `maybe_finalize_jump' of this case.  Examine what 
  3998.                    follows.  */
  3999.                 if ((re_opcode_t) p1[3] == exactn && p1[5] != c)
  4000.                   {
  4001.               p[-3] = (unsigned char) pop_failure_jump;
  4002.                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
  4003.                                   c, p1[5]);
  4004.                   }
  4005.                   
  4006.         else if ((re_opcode_t) p1[3] == charset
  4007.              || (re_opcode_t) p1[3] == charset_not)
  4008.           {
  4009.             int not = (re_opcode_t) p1[3] == charset_not;
  4010.                     
  4011.             if (c < (unsigned char) (p1[4] * BYTEWIDTH)
  4012.             && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  4013.               not = !not;
  4014.  
  4015.                     /* `not' is equal to 1 if c would match, which means
  4016.                         that we can't change to pop_failure_jump.  */
  4017.             if (!not)
  4018.                       {
  4019.                   p[-3] = (unsigned char) pop_failure_jump;
  4020.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
  4021.                       }
  4022.           }
  4023.           }
  4024.       }
  4025.       p -= 2;        /* Point at relative address again.  */
  4026.       if ((re_opcode_t) p[-1] != pop_failure_jump)
  4027.         {
  4028.           p[-1] = (unsigned char) jump;
  4029.               DEBUG_PRINT1 ("  Match => jump.\n");
  4030.           goto unconditional_jump;
  4031.         }
  4032.         /* Note fall through.  */
  4033.  
  4034.  
  4035.     /* The end of a simple repeat has a pop_failure_jump back to
  4036.            its matching on_failure_jump, where the latter will push a
  4037.            failure point.  The pop_failure_jump takes off failure
  4038.            points put on by this pop_failure_jump's matching
  4039.            on_failure_jump; we got through the pattern to here from the
  4040.            matching on_failure_jump, so didn't fail.  */
  4041.         case pop_failure_jump:
  4042.           {
  4043.             /* We need to pass separate storage for the lowest and
  4044.                highest registers, even though we don't care about the
  4045.                actual values.  Otherwise, we will restore only one
  4046.                register from the stack, since lowest will == highest in
  4047.                `pop_failure_point'.  */
  4048.             unsigned dummy_low_reg, dummy_high_reg;
  4049.             unsigned char *pdummy;
  4050.             const char *sdummy;
  4051.  
  4052.             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
  4053.             POP_FAILURE_POINT (sdummy, pdummy,
  4054.                                dummy_low_reg, dummy_high_reg,
  4055.                                reg_dummy, reg_dummy, reg_info_dummy);
  4056.           }
  4057.           /* Note fall through.  */
  4058.  
  4059.           
  4060.         /* Unconditionally jump (without popping any failure points).  */
  4061.         case jump:
  4062.     unconditional_jump:
  4063.       EXTRACT_NUMBER_AND_INCR (mcnt, p);    /* Get the amount to jump.  */
  4064.           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
  4065.       p += mcnt;                /* Do the jump.  */
  4066.           DEBUG_PRINT2 ("(to 0x%x).\n", p);
  4067.       break;
  4068.  
  4069.     
  4070.         /* We need this opcode so we can detect where alternatives end
  4071.            in `group_match_null_string_p' et al.  */
  4072.         case jump_past_alt:
  4073.           DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
  4074.           goto unconditional_jump;
  4075.  
  4076.  
  4077.         /* Normally, the on_failure_jump pushes a failure point, which
  4078.            then gets popped at pop_failure_jump.  We will end up at
  4079.            pop_failure_jump, also, and with a pattern of, say, `a+', we
  4080.            are skipping over the on_failure_jump, so we have to push
  4081.            something meaningless for pop_failure_jump to pop.  */
  4082.         case dummy_failure_jump:
  4083.           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
  4084.           /* It doesn't matter what we push for the string here.  What
  4085.              the code at `fail' tests is the value for the pattern.  */
  4086.           PUSH_FAILURE_POINT (0, 0, -2);
  4087.           goto unconditional_jump;
  4088.  
  4089.  
  4090.         /* At the end of an alternative, we need to push a dummy failure
  4091.            point in case we are followed by a `pop_failure_jump', because
  4092.            we don't want the failure point for the alternative to be
  4093.            popped.  For example, matching `(a|ab)*' against `aab'
  4094.            requires that we match the `ab' alternative.  */
  4095.         case push_dummy_failure:
  4096.           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
  4097.           /* See comments just above at `dummy_failure_jump' about the
  4098.              two zeroes.  */
  4099.           PUSH_FAILURE_POINT (0, 0, -2);
  4100.           break;
  4101.  
  4102.         /* Have to succeed matching what follows at least n times.
  4103.            After that, handle like `on_failure_jump'.  */
  4104.         case succeed_n: 
  4105.           EXTRACT_NUMBER (mcnt, p + 2);
  4106.           DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
  4107.  
  4108.           assert (mcnt >= 0);
  4109.           /* Originally, this is how many times we HAVE to succeed.  */
  4110.           if (mcnt > 0)
  4111.             {
  4112.                mcnt--;
  4113.            p += 2;
  4114.                STORE_NUMBER_AND_INCR (p, mcnt);
  4115.                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p, mcnt);
  4116.             }
  4117.       else if (mcnt == 0)
  4118.             {
  4119.               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.\n", p+2);
  4120.           p[2] = (unsigned char) no_op;
  4121.               p[3] = (unsigned char) no_op;
  4122.               goto on_failure;
  4123.             }
  4124.           break;
  4125.         
  4126.         case jump_n: 
  4127.           EXTRACT_NUMBER (mcnt, p + 2);
  4128.           DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
  4129.  
  4130.           /* Originally, this is how many times we CAN jump.  */
  4131.           if (mcnt)
  4132.             {
  4133.                mcnt--;
  4134.                STORE_NUMBER (p + 2, mcnt);
  4135.            goto unconditional_jump;         
  4136.             }
  4137.           /* If don't have to jump any more, skip over the rest of command.  */
  4138.       else      
  4139.         p += 4;             
  4140.           break;
  4141.         
  4142.     case set_number_at:
  4143.       {
  4144.             DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
  4145.  
  4146.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4147.             p1 = p + mcnt;
  4148.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4149.             DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p1, mcnt);
  4150.         STORE_NUMBER (p1, mcnt);
  4151.             break;
  4152.           }
  4153.  
  4154.         case wordbound:
  4155.           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
  4156.           if (AT_WORD_BOUNDARY (d))
  4157.         break;
  4158.           goto fail;
  4159.  
  4160.     case notwordbound:
  4161.           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
  4162.       if (AT_WORD_BOUNDARY (d))
  4163.         goto fail;
  4164.           break;
  4165.  
  4166.     case wordbeg:
  4167.           DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
  4168.       if (WORDCHAR_P (d) && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
  4169.         break;
  4170.           goto fail;
  4171.  
  4172.     case wordend:
  4173.           DEBUG_PRINT1 ("EXECUTING wordend.\n");
  4174.       if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
  4175.               && (!WORDCHAR_P (d) || AT_STRINGS_END (d)))
  4176.         break;
  4177.           goto fail;
  4178.  
  4179. #ifdef emacs
  4180. #ifdef emacs19
  4181.       case before_dot:
  4182.           DEBUG_PRINT1 ("EXECUTING before_dot.\n");
  4183.        if (PTR_CHAR_POS ((unsigned char *) d) >= point)
  4184.           goto fail;
  4185.         break;
  4186.   
  4187.       case at_dot:
  4188.           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
  4189.        if (PTR_CHAR_POS ((unsigned char *) d) != point)
  4190.           goto fail;
  4191.         break;
  4192.   
  4193.       case after_dot:
  4194.           DEBUG_PRINT1 ("EXECUTING after_dot.\n");
  4195.           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
  4196.           goto fail;
  4197.         break;
  4198. #else /* not emacs19 */
  4199.     case at_dot:
  4200.           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
  4201.       if (PTR_CHAR_POS ((unsigned char *) d) + 1 != point)
  4202.         goto fail;
  4203.       break;
  4204. #endif /* not emacs19 */
  4205.  
  4206.     case syntaxspec:
  4207.           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
  4208.       mcnt = *p++;
  4209.       goto matchsyntax;
  4210.  
  4211.         case wordchar:
  4212.           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
  4213.       mcnt = (int) Sword;
  4214.         matchsyntax:
  4215.       PREFETCH ();
  4216.       if (SYNTAX (*d++) != (enum syntaxcode) mcnt)
  4217.             goto fail;
  4218.           SET_REGS_MATCHED ();
  4219.       break;
  4220.  
  4221.     case notsyntaxspec:
  4222.           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
  4223.       mcnt = *p++;
  4224.       goto matchnotsyntax;
  4225.  
  4226.         case notwordchar:
  4227.           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
  4228.       mcnt = (int) Sword;
  4229.         matchnotsyntax:
  4230.       PREFETCH ();
  4231.       if (SYNTAX (*d++) == (enum syntaxcode) mcnt)
  4232.             goto fail;
  4233.       SET_REGS_MATCHED ();
  4234.           break;
  4235.  
  4236. #else /* not emacs */
  4237.     case wordchar:
  4238.           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
  4239.       PREFETCH ();
  4240.           if (!WORDCHAR_P (d))
  4241.             goto fail;
  4242.       SET_REGS_MATCHED ();
  4243.           d++;
  4244.       break;
  4245.       
  4246.     case notwordchar:
  4247.           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
  4248.       PREFETCH ();
  4249.       if (WORDCHAR_P (d))
  4250.             goto fail;
  4251.           SET_REGS_MATCHED ();
  4252.           d++;
  4253.       break;
  4254. #endif /* not emacs */
  4255.           
  4256.         default:
  4257.           abort ();
  4258.     }
  4259.       continue;  /* Successfully executed one pattern command; keep going.  */
  4260.  
  4261.  
  4262.     /* We goto here if a matching operation fails. */
  4263.     fail:
  4264.       if (!FAIL_STACK_EMPTY ())
  4265.     { /* A restart point is known.  Restore to that state.  */
  4266.           DEBUG_PRINT1 ("\nFAIL:\n");
  4267.           POP_FAILURE_POINT (d, p,
  4268.                              lowest_active_reg, highest_active_reg,
  4269.                              regstart, regend, reg_info);
  4270.  
  4271.           /* If this failure point is a dummy, try the next one.  */
  4272.           if (!p)
  4273.         goto fail;
  4274.  
  4275.           /* If we failed to the end of the pattern, don't examine *p.  */
  4276.       assert (p <= pend);
  4277.           if (p < pend)
  4278.             {
  4279.               boolean is_a_jump_n = false;
  4280.               
  4281.               /* If failed to a backwards jump that's part of a repetition
  4282.                  loop, need to pop this failure point and use the next one.  */
  4283.               switch ((re_opcode_t) *p)
  4284.                 {
  4285.                 case jump_n:
  4286.                   is_a_jump_n = true;
  4287.                 case maybe_pop_jump:
  4288.                 case pop_failure_jump:
  4289.                 case jump:
  4290.                   p1 = p + 1;
  4291.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4292.                   p1 += mcnt;    
  4293.  
  4294.                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
  4295.                       || (!is_a_jump_n
  4296.                           && (re_opcode_t) *p1 == on_failure_jump))
  4297.                     goto fail;
  4298.                   break;
  4299.                 default:
  4300.                   /* do nothing */ ;
  4301.                 }
  4302.             }
  4303.  
  4304.           if (d >= string1 && d <= end1)
  4305.         dend = end_match_1;
  4306.         }
  4307.       else
  4308.         break;   /* Matching at this starting point really fails.  */
  4309.     } /* for (;;) */
  4310.  
  4311.   if (best_regs_set)
  4312.     goto restore_best_regs;
  4313.  
  4314.   FREE_VARIABLES ();
  4315.  
  4316.   return -1;                     /* Failure to match.  */
  4317. } /* re_match_2 */
  4318.  
  4319. /* Subroutine definitions for re_match_2.  */
  4320.  
  4321.  
  4322. /* We are passed P pointing to a register number after a start_memory.
  4323.    
  4324.    Return true if the pattern up to the corresponding stop_memory can
  4325.    match the empty string, and false otherwise.
  4326.    
  4327.    If we find the matching stop_memory, sets P to point to one past its number.
  4328.    Otherwise, sets P to an undefined byte less than or equal to END.
  4329.  
  4330.    We don't handle duplicates properly (yet).  */
  4331.  
  4332. static boolean
  4333. group_match_null_string_p (p, end, reg_info)
  4334.     unsigned char **p, *end;
  4335.     register_info_type *reg_info;
  4336. {
  4337.   int mcnt;
  4338.   /* Point to after the args to the start_memory.  */
  4339.   unsigned char *p1 = *p + 2;
  4340.   
  4341.   while (p1 < end)
  4342.     {
  4343.       /* Skip over opcodes that can match nothing, and return true or
  4344.      false, as appropriate, when we get to one that can't, or to the
  4345.          matching stop_memory.  */
  4346.       
  4347.       switch ((re_opcode_t) *p1)
  4348.         {
  4349.         /* Could be either a loop or a series of alternatives.  */
  4350.         case on_failure_jump:
  4351.           p1++;
  4352.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4353.           
  4354.           /* If the next operation is not a jump backwards in the
  4355.          pattern.  */
  4356.  
  4357.       if (mcnt >= 0)
  4358.         {
  4359.               /* Go through the on_failure_jumps of the alternatives,
  4360.                  seeing if any of the alternatives cannot match nothing.
  4361.                  The last alternative starts with only a jump,
  4362.                  whereas the rest start with on_failure_jump and end
  4363.                  with a jump, e.g., here is the pattern for `a|b|c':
  4364.  
  4365.                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
  4366.                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
  4367.                  /exactn/1/c                        
  4368.  
  4369.                  So, we have to first go through the first (n-1)
  4370.                  alternatives and then deal with the last one separately.  */
  4371.  
  4372.  
  4373.               /* Deal with the first (n-1) alternatives, which start
  4374.                  with an on_failure_jump (see above) that jumps to right
  4375.                  past a jump_past_alt.  */
  4376.  
  4377.               while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
  4378.                 {
  4379.                   /* `mcnt' holds how many bytes long the alternative
  4380.                      is, including the ending `jump_past_alt' and
  4381.                      its number.  */
  4382.  
  4383.                   if (!alt_match_null_string_p (p1, p1 + mcnt - 3, 
  4384.                                       reg_info))
  4385.                     return false;
  4386.  
  4387.                   /* Move to right after this alternative, including the
  4388.              jump_past_alt.  */
  4389.                   p1 += mcnt;    
  4390.  
  4391.                   /* Break if it's the beginning of an n-th alternative
  4392.                      that doesn't begin with an on_failure_jump.  */
  4393.                   if ((re_opcode_t) *p1 != on_failure_jump)
  4394.                     break;
  4395.         
  4396.           /* Still have to check that it's not an n-th
  4397.              alternative that starts with an on_failure_jump.  */
  4398.           p1++;
  4399.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4400.                   if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
  4401.                     {
  4402.               /* Get to the beginning of the n-th alternative.  */
  4403.                       p1 -= 3;
  4404.                       break;
  4405.                     }
  4406.                 }
  4407.  
  4408.               /* Deal with the last alternative: go back and get number
  4409.                  of the `jump_past_alt' just before it.  `mcnt' contains
  4410.                  the length of the alternative.  */
  4411.               EXTRACT_NUMBER (mcnt, p1 - 2);
  4412.  
  4413.               if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
  4414.                 return false;
  4415.  
  4416.               p1 += mcnt;    /* Get past the n-th alternative.  */
  4417.             } /* if mcnt > 0 */
  4418.           break;
  4419.  
  4420.           
  4421.         case stop_memory:
  4422.       assert (p1[1] == **p);
  4423.           *p = p1 + 2;
  4424.           return true;
  4425.  
  4426.         
  4427.         default: 
  4428.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  4429.             return false;
  4430.         }
  4431.     } /* while p1 < end */
  4432.  
  4433.   return false;
  4434. } /* group_match_null_string_p */
  4435.  
  4436.  
  4437. /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
  4438.    It expects P to be the first byte of a single alternative and END one
  4439.    byte past the last. The alternative can contain groups.  */
  4440.    
  4441. static boolean
  4442. alt_match_null_string_p (p, end, reg_info)
  4443.     unsigned char *p, *end;
  4444.     register_info_type *reg_info;
  4445. {
  4446.   int mcnt;
  4447.   unsigned char *p1 = p;
  4448.   
  4449.   while (p1 < end)
  4450.     {
  4451.       /* Skip over opcodes that can match nothing, and break when we get 
  4452.          to one that can't.  */
  4453.       
  4454.       switch ((re_opcode_t) *p1)
  4455.         {
  4456.     /* It's a loop.  */
  4457.         case on_failure_jump:
  4458.           p1++;
  4459.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4460.           p1 += mcnt;
  4461.           break;
  4462.           
  4463.     default: 
  4464.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  4465.             return false;
  4466.         }
  4467.     }  /* while p1 < end */
  4468.  
  4469.   return true;
  4470. } /* alt_match_null_string_p */
  4471.  
  4472.  
  4473. /* Deals with the ops common to group_match_null_string_p and
  4474.    alt_match_null_string_p.  
  4475.    
  4476.    Sets P to one after the op and its arguments, if any.  */
  4477.  
  4478. static boolean
  4479. common_op_match_null_string_p (p, end, reg_info)
  4480.     unsigned char **p, *end;
  4481.     register_info_type *reg_info;
  4482. {
  4483.   int mcnt;
  4484.   boolean ret;
  4485.   int reg_no;
  4486.   unsigned char *p1 = *p;
  4487.  
  4488.   switch ((re_opcode_t) *p1++)
  4489.     {
  4490.     case no_op:
  4491.     case begline:
  4492.     case endline:
  4493.     case begbuf:
  4494.     case endbuf:
  4495.     case wordbeg:
  4496.     case wordend:
  4497.     case wordbound:
  4498.     case notwordbound:
  4499. #ifdef emacs
  4500.     case before_dot:
  4501.     case at_dot:
  4502.     case after_dot:
  4503. #endif
  4504.       break;
  4505.  
  4506.     case start_memory:
  4507.       reg_no = *p1;
  4508.       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
  4509.       ret = group_match_null_string_p (&p1, end, reg_info);
  4510.       
  4511.       /* Have to set this here in case we're checking a group which
  4512.          contains a group and a back reference to it.  */
  4513.  
  4514.       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
  4515.         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
  4516.  
  4517.       if (!ret)
  4518.         return false;
  4519.       break;
  4520.           
  4521.     /* If this is an optimized succeed_n for zero times, make the jump.  */
  4522.     case jump:
  4523.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4524.       if (mcnt >= 0)
  4525.         p1 += mcnt;
  4526.       else
  4527.         return false;
  4528.       break;
  4529.  
  4530.     case succeed_n:
  4531.       /* Get to the number of times to succeed.  */
  4532.       p1 += 2;        
  4533.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4534.  
  4535.       if (mcnt == 0)
  4536.         {
  4537.           p1 -= 4;
  4538.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4539.           p1 += mcnt;
  4540.         }
  4541.       else
  4542.         return false;
  4543.       break;
  4544.  
  4545.     case duplicate: 
  4546.       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
  4547.         return false;
  4548.       break;
  4549.  
  4550.     case set_number_at:
  4551.       p1 += 4;
  4552.  
  4553.     default:
  4554.       /* All other opcodes mean we cannot match the empty string.  */
  4555.       return false;
  4556.   }
  4557.  
  4558.   *p = p1;
  4559.   return true;
  4560. } /* common_op_match_null_string_p */
  4561.  
  4562.  
  4563. /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
  4564.    bytes; nonzero otherwise.  */
  4565.    
  4566. static int
  4567. bcmp_translate (s1, s2, len, translate)
  4568.      unsigned char *s1, *s2;
  4569.      register int len;
  4570.      char *translate;
  4571. {
  4572.   register unsigned char *p1 = s1, *p2 = s2;
  4573.   while (len)
  4574.     {
  4575.       if (translate[*p1++] != translate[*p2++]) return 1;
  4576.       len--;
  4577.     }
  4578.   return 0;
  4579. }
  4580.  
  4581. /* Entry points for GNU code.  */
  4582.  
  4583. /* re_compile_pattern is the GNU regular expression compiler: it
  4584.    compiles PATTERN (of length SIZE) and puts the result in BUFP.
  4585.    Returns 0 if the pattern was valid, otherwise an error string.
  4586.    
  4587.    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
  4588.    are set in BUFP on entry.
  4589.    
  4590.    We call regex_compile to do the actual compilation.  */
  4591.  
  4592. const char *
  4593. re_compile_pattern (pattern, length, bufp)
  4594.      const char *pattern;
  4595.      int length;
  4596.      struct re_pattern_buffer *bufp;
  4597. {
  4598.   reg_errcode_t ret;
  4599.   
  4600.   /* GNU code is written to assume at least RE_NREGS registers will be set
  4601.      (and at least one extra will be -1).  */
  4602.   bufp->regs_allocated = REGS_UNALLOCATED;
  4603.   
  4604.   /* And GNU code determines whether or not to get register information
  4605.      by passing null for the REGS argument to re_match, etc., not by
  4606.      setting no_sub.  */
  4607.   bufp->no_sub = 0;
  4608.   
  4609.   /* Match anchors at newline.  */
  4610.   bufp->newline_anchor = 1;
  4611.   
  4612.   ret = regex_compile (pattern, length, re_syntax_options, bufp);
  4613.  
  4614.   return re_error_msg[(int) ret];
  4615. }     
  4616.  
  4617. /* Entry points compatible with 4.2 BSD regex library.  We don't define
  4618.    them if this is an Emacs or POSIX compilation.  */
  4619.  
  4620. #if !defined (emacs) && !defined (_POSIX_SOURCE)
  4621.  
  4622. /* BSD has one and only one pattern buffer.  */
  4623. static struct re_pattern_buffer re_comp_buf;
  4624.  
  4625. char *
  4626. re_comp (s)
  4627.     const char *s;
  4628. {
  4629.   reg_errcode_t ret;
  4630.   
  4631.   if (!s)
  4632.     {
  4633.       if (!re_comp_buf.buffer)
  4634.     return "No previous regular expression";
  4635.       return 0;
  4636.     }
  4637.  
  4638.   if (!re_comp_buf.buffer)
  4639.     {
  4640.       re_comp_buf.buffer = (unsigned char *) malloc (200);
  4641.       if (re_comp_buf.buffer == NULL)
  4642.         return "Memory exhausted";
  4643.       re_comp_buf.allocated = 200;
  4644.  
  4645.       re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
  4646.       if (re_comp_buf.fastmap == NULL)
  4647.     return "Memory exhausted";
  4648.     }
  4649.  
  4650.   /* Since `re_exec' always passes NULL for the `regs' argument, we
  4651.      don't need to initialize the pattern buffer fields which affect it.  */
  4652.  
  4653.   /* Match anchors at newlines.  */
  4654.   re_comp_buf.newline_anchor = 1;
  4655.  
  4656.   ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
  4657.   
  4658.   /* Yes, we're discarding `const' here.  */
  4659.   return (char *) re_error_msg[(int) ret];
  4660. }
  4661.  
  4662.  
  4663. int
  4664. re_exec (s)
  4665.     const char *s;
  4666. {
  4667.   const int len = strlen (s);
  4668.   return
  4669.     0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
  4670. }
  4671. #endif /* not emacs and not _POSIX_SOURCE */
  4672.  
  4673. /* POSIX.2 functions.  Don't define these for Emacs.  */
  4674.  
  4675. #ifndef emacs
  4676.  
  4677. /* regcomp takes a regular expression as a string and compiles it.
  4678.  
  4679.    PREG is a regex_t *.  We do not expect any fields to be initialized,
  4680.    since POSIX says we shouldn't.  Thus, we set
  4681.  
  4682.      `buffer' to the compiled pattern;
  4683.      `used' to the length of the compiled pattern;
  4684.      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
  4685.        REG_EXTENDED bit in CFLAGS is set; otherwise, to
  4686.        RE_SYNTAX_POSIX_BASIC;
  4687.      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
  4688.      `fastmap' and `fastmap_accurate' to zero;
  4689.      `re_nsub' to the number of subexpressions in PATTERN.
  4690.  
  4691.    PATTERN is the address of the pattern string.
  4692.  
  4693.    CFLAGS is a series of bits which affect compilation.
  4694.  
  4695.      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
  4696.      use POSIX basic syntax.
  4697.  
  4698.      If REG_NEWLINE is set, then . and [^...] don't match newline.
  4699.      Also, regexec will try a match beginning after every newline.
  4700.  
  4701.      If REG_ICASE is set, then we considers upper- and lowercase
  4702.      versions of letters to be equivalent when matching.
  4703.  
  4704.      If REG_NOSUB is set, then when PREG is passed to regexec, that
  4705.      routine will report only success or failure, and nothing about the
  4706.      registers.
  4707.  
  4708.    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
  4709.    the return codes and their meanings.)  */
  4710.  
  4711. int
  4712. regcomp (preg, pattern, cflags)
  4713.     regex_t *preg;
  4714.     const char *pattern; 
  4715.     int cflags;
  4716. {
  4717.   reg_errcode_t ret;
  4718.   unsigned syntax
  4719.     = (cflags & REG_EXTENDED) ?
  4720.       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
  4721.  
  4722.   /* regex_compile will allocate the space for the compiled pattern.  */
  4723.   preg->buffer = 0;
  4724.   preg->allocated = 0;
  4725.   
  4726.   /* Don't bother to use a fastmap when searching.  This simplifies the
  4727.      REG_NEWLINE case: if we used a fastmap, we'd have to put all the
  4728.      characters after newlines into the fastmap.  This way, we just try
  4729.      every character.  */
  4730.   preg->fastmap = 0;
  4731.   
  4732.   if (cflags & REG_ICASE)
  4733.     {
  4734.       unsigned i;
  4735.       
  4736.       preg->translate = (char *) malloc (CHAR_SET_SIZE);
  4737.       if (preg->translate == NULL)
  4738.         return (int) REG_ESPACE;
  4739.  
  4740.       /* Map uppercase characters to corresponding lowercase ones.  */
  4741.       for (i = 0; i < CHAR_SET_SIZE; i++)
  4742.         preg->translate[i] = isupper (i) ? tolower (i) : i;
  4743.     }
  4744.   else
  4745.     preg->translate = NULL;
  4746.  
  4747.   /* If REG_NEWLINE is set, newlines are treated differently.  */
  4748.   if (cflags & REG_NEWLINE)
  4749.     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
  4750.       syntax &= ~RE_DOT_NEWLINE;
  4751.       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
  4752.       /* It also changes the matching behavior.  */
  4753.       preg->newline_anchor = 1;
  4754.     }
  4755.   else
  4756.     preg->newline_anchor = 0;
  4757.  
  4758.   preg->no_sub = !!(cflags & REG_NOSUB);
  4759.  
  4760.   /* POSIX says a null character in the pattern terminates it, so we 
  4761.      can use strlen here in compiling the pattern.  */
  4762.   ret = regex_compile (pattern, strlen (pattern), syntax, preg);
  4763.   
  4764.   /* POSIX doesn't distinguish between an unmatched open-group and an
  4765.      unmatched close-group: both are REG_EPAREN.  */
  4766.   if (ret == REG_ERPAREN) ret = REG_EPAREN;
  4767.   
  4768.   return (int) ret;
  4769. }
  4770.  
  4771.  
  4772. /* regexec searches for a given pattern, specified by PREG, in the
  4773.    string STRING.
  4774.    
  4775.    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
  4776.    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
  4777.    least NMATCH elements, and we set them to the offsets of the
  4778.    corresponding matched substrings.
  4779.    
  4780.    EFLAGS specifies `execution flags' which affect matching: if
  4781.    REG_NOTBOL is set, then ^ does not match at the beginning of the
  4782.    string; if REG_NOTEOL is set, then $ does not match at the end.
  4783.    
  4784.    We return 0 if we find a match and REG_NOMATCH if not.  */
  4785.  
  4786. int
  4787. regexec (preg, string, nmatch, pmatch, eflags)
  4788.     const regex_t *preg;
  4789.     const char *string; 
  4790.     size_t nmatch; 
  4791.     regmatch_t pmatch[]; 
  4792.     int eflags;
  4793. {
  4794.   int ret;
  4795.   struct re_registers regs;
  4796.   regex_t private_preg;
  4797.   int len = strlen (string);
  4798.   boolean want_reg_info = !preg->no_sub && nmatch > 0;
  4799.  
  4800.   private_preg = *preg;
  4801.   
  4802.   private_preg.not_bol = !!(eflags & REG_NOTBOL);
  4803.   private_preg.not_eol = !!(eflags & REG_NOTEOL);
  4804.   
  4805.   /* The user has told us exactly how many registers to return
  4806.      information about, via `nmatch'.  We have to pass that on to the
  4807.      matching routines.  */
  4808.   private_preg.regs_allocated = REGS_FIXED;
  4809.   
  4810.   if (want_reg_info)
  4811.     {
  4812.       regs.num_regs = nmatch;
  4813.       regs.start = TALLOC (nmatch, regoff_t);
  4814.       regs.end = TALLOC (nmatch, regoff_t);
  4815.       if (regs.start == NULL || regs.end == NULL)
  4816.         return (int) REG_NOMATCH;
  4817.     }
  4818.  
  4819.   /* Perform the searching operation.  */
  4820.   ret = re_search (&private_preg, string, len,
  4821.                    /* start: */ 0, /* range: */ len,
  4822.                    want_reg_info ? ®s : (struct re_registers *) 0);
  4823.   
  4824.   /* Copy the register information to the POSIX structure.  */
  4825.   if (want_reg_info)
  4826.     {
  4827.       if (ret >= 0)
  4828.         {
  4829.           unsigned r;
  4830.  
  4831.           for (r = 0; r < nmatch; r++)
  4832.             {
  4833.               pmatch[r].rm_so = regs.start[r];
  4834.               pmatch[r].rm_eo = regs.end[r];
  4835.             }
  4836.         }
  4837.  
  4838.       /* If we needed the temporary register info, free the space now.  */
  4839.       free (regs.start);
  4840.       free (regs.end);
  4841.     }
  4842.  
  4843.   /* We want zero return to mean success, unlike `re_search'.  */
  4844.   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
  4845. }
  4846.  
  4847.  
  4848. /* Returns a message corresponding to an error code, ERRCODE, returned
  4849.    from either regcomp or regexec.   We don't use PREG here.  */
  4850.  
  4851. size_t
  4852. regerror (errcode, preg, errbuf, errbuf_size)
  4853.     int errcode;
  4854.     const regex_t *preg;
  4855.     char *errbuf;
  4856.     size_t errbuf_size;
  4857. {
  4858.   const char *msg
  4859.     = re_error_msg[errcode] == NULL ? "Success" : re_error_msg[errcode];
  4860.   size_t msg_size = strlen (msg) + 1; /* Includes the null.  */
  4861.   
  4862.   if (errbuf_size != 0)
  4863.     {
  4864.       if (msg_size > errbuf_size)
  4865.         {
  4866.           strncpy (errbuf, msg, errbuf_size - 1);
  4867.           errbuf[errbuf_size - 1] = 0;
  4868.         }
  4869.       else
  4870.         strcpy (errbuf, msg);
  4871.     }
  4872.  
  4873.   return msg_size;
  4874. }
  4875.  
  4876.  
  4877. /* Free dynamically allocated space used by PREG.  */
  4878.  
  4879. void
  4880. regfree (preg)
  4881.     regex_t *preg;
  4882. {
  4883.   if (preg->buffer != NULL)
  4884.     free (preg->buffer);
  4885.   preg->buffer = NULL;
  4886.   
  4887.   preg->allocated = 0;
  4888.   preg->used = 0;
  4889.  
  4890.   if (preg->fastmap != NULL)
  4891.     free (preg->fastmap);
  4892.   preg->fastmap = NULL;
  4893.   preg->fastmap_accurate = 0;
  4894.  
  4895.   if (preg->translate != NULL)
  4896.     free (preg->translate);
  4897.   preg->translate = NULL;
  4898. }
  4899.  
  4900. #endif /* not emacs  */
  4901.  
  4902. /*
  4903. Local variables:
  4904. make-backup-files: t
  4905. version-control: t
  4906. trim-versions-without-asking: nil
  4907. End:
  4908. */
  4909.